目录
一、场景
1、在CentOS服务器安装Redis服务
二、安装
1、添加EPEL存储库
sudo yum install epel-release
2、安装Redis
sudo yum install redis
安装过程遇到y/n的选择,直接选择y
3、查看redis的安装情况
service redis status
4、以进程的方式运行redis
nohup 安装目录/redis.service
5、查看redis是否启动
ps -ef|grep redis
1、在CentOS服务器安装Redis服务
1、添加EPEL存储库
sudo yum install epel-release
2、安装Redis
sudo yum install redis
安装过程遇到y/n的选择,直接选择y
3、查看redis的安装情况
service redis status
4、以进程的方式运行redis
nohup 安装目录/redis.service
5、查看redis是否启动
ps -ef|grep redis