From 5e9a782c99c6e3cebdd2ef5067741e2b7469818a Mon Sep 17 00:00:00 2001 From: Adarnof Date: Wed, 11 Jan 2017 22:29:51 -0500 Subject: [PATCH] Correct CentOS installation instructions. Closes #625 Closes #621 --- docs/installation/auth/centos.md | 11 ++++++++--- docs/installation/auth/dependencies.md | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/installation/auth/centos.md b/docs/installation/auth/centos.md index 9eb2ba10..96cdc15e 100644 --- a/docs/installation/auth/centos.md +++ b/docs/installation/auth/centos.md @@ -1,6 +1,6 @@ # CentOS Installation -It’s recommended to update all packages before proceeding. +It's recommended to update all packages before proceeding. `sudo yum update` `sudo yum upgrade` `sudo reboot` @@ -10,7 +10,12 @@ Now install all [dependencies](dependencies.md). For this guide you'll need the sudo yum install xxxxxxx replacing the x's with the list of packages. -For security and permissions, it’s 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 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. - python manage.py syncdb + python manage.py migrate AllianceAuth needs to generate corp and alliance models before it can assign users to them. diff --git a/docs/installation/auth/dependencies.md b/docs/installation/auth/dependencies.md index 248e6fc8..39f10695 100644 --- a/docs/installation/auth/dependencies.md +++ b/docs/installation/auth/dependencies.md @@ -45,7 +45,7 @@ Required for base auth site #### 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