Commit c548b5aa42a6835120788799fed8152e1c746f29
1 parent
8a883b80
Exists in
master
and in
28 other branches
Fix redis installation on centos
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
vagrant/centos.sh
... | ... | @@ -22,9 +22,9 @@ yum install -y epel-release |
22 | 22 | |
23 | 23 | yum -y groupinstall "Development tools" |
24 | 24 | |
25 | -yum install -y git unzip gettext libxml2-devel libxslt-devel openssl-devel libffi-devel python-devel python-pip python-virtualenvwrapper redis-server | |
25 | +yum install -y git unzip gettext libxml2-devel libxslt-devel openssl-devel libffi-devel python-devel python-pip python-virtualenvwrapper redis | |
26 | 26 | |
27 | 27 | |
28 | -### Init Rabbitmq | |
29 | -chkconfig redis-server on | |
30 | -systemctl start redis-server | |
28 | +### Init Redis | |
29 | +systemctl enable redis | |
30 | +systemctl start redis | ... | ... |