Merge remote-tracking branch 'upstream/master'

pull/150/head
Steve Clement 2019-02-14 22:50:27 +09:00
commit 761824e3f1
1 changed files with 18 additions and 0 deletions

View File

@ -166,6 +166,24 @@ There is no official procedure to uninstalling a MISP instance.
If you want to re-use a machine where MISP was installed, wipe the machine and do a fresh install. If you want to re-use a machine where MISP was installed, wipe the machine and do a fresh install.
Consider the data in your MISP instance as potentially confidential and if you synchronized with other instances, be respectful and wipe it clean. Consider the data in your MISP instance as potentially confidential and if you synchronized with other instances, be respectful and wipe it clean.
## Updating PyMISP to incorporate newer versions of the MISP object templates
In some cases, for instance if a newer version of a MISP object is present on the server but not yet on PyMISP, you want to reflect the current state in your PyMISP installation.
In order to do so, perform the following steps. It fetches the latest object templates and installs PyMISP again:
```
git clone https://github.com/MISP/PyMISP.git
cd PyMISP/pymisp/data
git submodule update --init
cd misp-objects
git pull origin master
cd ../../../
sudo pip3 install -I .
```
<!-- <!--
Comment Place Holder Comment Place Holder
--> -->