CentOS 7 安装 redis 单节点

安装所需插件

redis使用c语言开发,需要gcc环境

yum install -y gcc

安装redis

官方下载地址

使用wget命令下载,版本号根据自己需要来

wget http://download.redis.io/releases/redis-5.0.9.tar.gz

解压

tar -zxvf redis-5.0.9.tar.gz

切换到解压目录后,编译

make

安装到指定目录

make install PREFIX=/usr/local/redis

设置为服务模式支持开机启动

从 redis 的源码目录中复制 redis.conf 到 redis 的安装目录

 cp /mnt/redis-5.0.9/redis.conf /usr/local/redis/bin/

修改配置信息

开启远程连接,默认值允许本机连接
# bind 127.0.0.1

设置为服务模式,支持开机启动,默认是no
daemonize yes

开启密码认证,默认不开启,没有密码会被攻击
requirepass ****

添加开机启动服务

vim /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

设置开机启动

systemctl daemon-reload
systemctl start redis.service
systemctl enable redis.service

服务操作命令

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   #停止开机自启动

你可能感兴趣的:(CentOS 7 安装 redis 单节点)