【1、安装】
rpm -ivh redis-5.0.14-1.el7.remi.x86_64.rpm
安装成功后,需要修改下配置文件,否则无法连接
【2、修改配置】
vim /etc/redis.conf
# 修改内容如下:
1. daemonize no 改为 daemonize yes 以后台静默进程启动
2. 把 bind 127.0.0.1 修改为 bind 0.0.0.0
3. protected-mode yes 把yes改为no
【3、启动】
# 重启redis服务
systemctl restart redis.service
# 设置redis服务为开机自启
systemctl enable redis.service
# 查看redis是否启动成功
ps aux | grep redis
systemctl status redis