标签:header mamicode etc stop https src 编译 releases ade
1. su root进入root模式
2. 安装gcc套装:
yum install cpp yum install binutils yum install glibc yum install glibc-kernheaders yum install glibc-common yum install glibc-devel yum install gcc yum install make
升级gcc
yum -y install centos-release-scl yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils scl enable devtoolset-9 bash
设置永久升级:
echo "source /opt/rh/devtoolset-9/enable" >>/etc/profile
3. 下载压缩包
用wget指令: wget http://download.redis.io/releases/redis-6.0.8.tar.gz
当然如果你想下载最新版,去官网看一下最新版的版本号,更改下就可以
4.解压安装包
tar -zxvf redis-6.0.8.tar.gz
5.cd切换到redis解压目录下,执行编译
cd redis-6.0.8/
make
6. 安装并指定安装目录
make install PREFIX=/usr/local/redis
7. 前台启动
cd /usr/local/redis/bin/
./redis-server
8. 后台启动
从 redis 的源码目录中复制 redis.conf 到 redis 的安装目录
这个源码目录就是你解压的目录,然后需要进入root模式
su root cp redis.conf /usr/local/redis/bin/ cd /usr/local/redis/bin/
9. 修改配置文件
vi redis.conf
键盘输入:进入命令模式
命令模式下输入 /字符串,就可以快速查询字符串,将把 daemonize no 改为 daemonize yes
按insert键就可以进行改写,Esc退出编辑模式
然后输入wq保存退出
10. 后台启动
./redis-server redis.conf
可以通过ps命令查看是否有该进程
ps -ef|grep redis
11. 设置开机启动
添加开机启动服务
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
创建 redis 命令软链接
ln -s /usr/local/redis/bin/redis-cli /usr/bin/redis
服务操作命令
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 #停止开机自启动
使用 (也可以在redis目录下用 ./redis-server redis.conf 启动):
参考:https://www.cnblogs.com/heqiuyong/p/10463334.html
标签:header mamicode etc stop https src 编译 releases ade
原文地址:https://www.cnblogs.com/dmzna/p/13851726.html