chg: small fixes for ubuntu1604 install doc

pull/1277/head
Andreas Ziegler 2016-06-19 20:29:47 +02:00
parent 0cd9acc59b
commit 5996c56e7f
1 changed files with 10 additions and 11 deletions

View File

@ -1,5 +1,5 @@
INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS
------------------------- for ubuntu 16.04-server ------------------------- for Ubuntu 16.04-server
1/ Minimal Ubuntu install 1/ Minimal Ubuntu install
------------------------- -------------------------
@ -7,6 +7,10 @@ INSTALLATION INSTRUCTIONS
# Install a minimal Ubuntu 16.04-server system with the software: # Install a minimal Ubuntu 16.04-server system with the software:
- OpenSSH server - OpenSSH server
# Make sure your system is up2date:
sudo apt-get update
sudo apt-get upgrade
# install postfix, there will be some questions. # install postfix, there will be some questions.
sudo apt-get install postfix sudo apt-get install postfix
# Postfix Configuration: Satellite system # Postfix Configuration: Satellite system
@ -14,10 +18,6 @@ sudo apt-get install postfix
sudo postconf -e 'relayhost = example.com' sudo postconf -e 'relayhost = example.com'
sudo postfix reload sudo postfix reload
# Make sure your system is up2date:
sudo apt-get update
sudo apt-get upgrade
2/ Install LAMP & dependencies 2/ Install LAMP & dependencies
------------------------------ ------------------------------
@ -122,8 +122,7 @@ sudo -u www-data sh -c "mysql -u misp -p misp < /var/www/MISP/INSTALL/MYSQL.sql"
7/ Apache configuration 7/ Apache configuration
----------------------- -----------------------
# Now configure your apache server with the DocumentRoot /var/www/MISP/app/webroot/ # Now configure your Apache webserver with the DocumentRoot /var/www/MISP/app/webroot/
# A sample vhost can be found in /var/www/MISP/INSTALL/apache.misp.ubuntu
sudo cp /var/www/MISP/INSTALL/apache.misp.ssl /etc/apache2/sites-available/misp-ssl.conf sudo cp /var/www/MISP/INSTALL/apache.misp.ssl /etc/apache2/sites-available/misp-ssl.conf
@ -238,8 +237,8 @@ sudo -u www-data bash /var/www/MISP/app/Console/worker/start.sh
# If any of the directories that MISP uses to store files is not writeable to the apache user, change the permissions # If any of the directories that MISP uses to store files is not writeable to the apache user, change the permissions
# you can do this by running the following commands: # you can do this by running the following commands:
chmod -R 750 /var/www/MISP/<directory path with an indicated issue> sudo chmod -R 750 /var/www/MISP/<directory path with an indicated issue>
chown -R www-data:www-data /var/www/MISP/<directory path with an indicated issue> sudo chown -R www-data:www-data /var/www/MISP/<directory path with an indicated issue>
# Make sure that the STIX libraries and GnuPG work as intended, if not, refer to INSTALL.txt's paragraphs dealing with these two items # Make sure that the STIX libraries and GnuPG work as intended, if not, refer to INSTALL.txt's paragraphs dealing with these two items
@ -264,6 +263,6 @@ Recommended actions
Optional features Optional features
------------------- -------------------
# MISP has a new pub/sub feature, using ZeroMQ. To enable it, simply run the following command # MISP has a new pub/sub feature, using ZeroMQ. To enable it, simply run the following command
pip install pyzmq sudo pip install pyzmq
# ZeroMQ depends on the Python client for Redis # ZeroMQ depends on the Python client for Redis
pip install redis sudo pip install redis