Correct CentOS installation instructions.

Closes #625
Closes #621
This commit is contained in:
Adarnof 2017-01-11 22:29:51 -05:00
parent 9865726d2d
commit 5e9a782c99
2 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# CentOS Installation # CentOS Installation
Its recommended to update all packages before proceeding. It's recommended to update all packages before proceeding.
`sudo yum update` `sudo yum update`
`sudo yum upgrade` `sudo yum upgrade`
`sudo reboot` `sudo reboot`
@ -10,7 +10,12 @@ Now install all [dependencies](dependencies.md). For this guide you'll need the
sudo yum install xxxxxxx sudo yum install xxxxxxx
replacing the x's with the list of packages. replacing the x's with the list of packages.
For security and permissions, its highly recommended you create a user to install under who is not the root account. Make sure redis is running before continuing:
systemctl enable redis.service
systemctl start redis.service
For security and permissions, it's highly recommended you create a user to install under who is not the root account.
sudo adduser allianceserver sudo adduser allianceserver
sudo passwd allianceserver sudo passwd allianceserver
@ -57,7 +62,7 @@ The settings file needs configuring. See this lengthy guide for specifics.
Django needs to install models to the database before it can start. Django needs to install models to the database before it can start.
python manage.py syncdb python manage.py migrate
AllianceAuth needs to generate corp and alliance models before it can assign users to them. AllianceAuth needs to generate corp and alliance models before it can assign users to them.

View File

@ -45,7 +45,7 @@ Required for base auth site
#### Python #### Python
python python-devel MySQL-python python-setuptools mysql-connector-python python-pip python python-devel MySQL-python python-setuptools mysql-connector-python python-pip bzip2-devel
#### MySQL #### MySQL