1、redis 下载
Redis官网:https://redis.io/
历史版本下载:http://download.redis.io/releases
2、环境依赖:
gcc安装:yum install gcc-c++
版本查看:gcc -v
3、解压redis
解压:tar -zxvf redis-5.0.7.tar.gz
4、编译与安装redis
进入目录:cd redis-5.0.7
开始编译:make
安装到指定目录:make install PREFIX=/usr/local/redis
5、配置复制与修改
复制原有redis配置文件到执行安装路径bin
cp /usr/local/redis-5.0.7/redis.conf /usr/local/redis/bin/
进入安装路径: cd /usr/local/redis/bin
编辑配置文件:vim redis.conf
1、支持后台持续运行:daemonize no 改为 daemonize yes
2、支持远程连接:bind 0.0.0.0
3、密码设置:requirepass root
6、后台启动
./redis-server redis.conf
7、设置开机启动
vi /etc/systemd/system/redis.service
[Unit]
Description=redis-server
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/bin/redis.conf
PrivateTmp=true
[Install]
WantedBy=multi-user.target
注意:ExecStart配置成自己的路径
设置开机启动
systemctl daemon-reload
systemctl start redis.service
systemctl enable redis.service
8、服务操作命令
服务操作命令 systemctl start redis.service #启动redis服务 systemctl stop redis.service #停止redis服务 systemctl restart redis.service #重新启动服务 systemctl status redis.service #查看服务当前状态 systemctl enable redis.service #设置开机自启动 systemctl disable redis.service #停止开机自启动
9、连接工具
resp和desktopManager
10、参考博客:https://blog.csdn.net/maomao1983zy/article/details/106858690
标签:bin,service,安装,redis,systemctl,usr,linux,local From: https://www.cnblogs.com/hejj-bk/p/17816768.html