Add updating instructions

This commit is contained in:
Michel Oosterhof 2017-12-13 09:09:36 +00:00
parent 4f36ec44d0
commit 43eb51beba
1 changed files with 13 additions and 2 deletions

View File

@ -204,3 +204,14 @@ double check that your PYTHONPATH is set to the source code directory.
To make Cowrie logfiles public readable, change the ```--umask 0077``` option in start.sh into ```--umask 0022``` To make Cowrie logfiles public readable, change the ```--umask 0077``` option in start.sh into ```--umask 0022```
# Updating Cowrie
Updating is an easy process. First stop your honeypot. Then fetch updates from GitHub, as a next step upgrade your Python dependencies.
```
bin/cowrie stop
git pull
pip install --upgrade -r requirements.txt
bin/cowrie start
```