CentOS安装Redis 7.0.5

下载redis安装包

redis下载地址:Download | Redis

CentOS安装Redis 7.0.5_第1张图片

通过工具xftp上传redis安装包

CentOS安装Redis 7.0.5_第2张图片

通过工具xshell解压redis安装包

tar -xvf /data/redis/redis-7.0.5.tar.gz -C /data/redis

CentOS安装Redis 7.0.5_第3张图片

CentOS安装Redis 7.0.5_第4张图片

安装redis所需的依赖包

yum install gcc

修改配置文件redis.conf

#设置可访问IP,默认127.0.0.1
bind 0.0.0.0
#端口,默认6379
port 6379
#客户端登录密码
requirepass 123456
#数据库的个数,默认16个
databases 16
#设置Redis启动为后台守护进程
daemonize yes

初始化配置信息

cd /data/redis/redis-7.0.5
make

CentOS安装Redis 7.0.5_第5张图片

CentOS安装Redis 7.0.5_第6张图片

直接启动redis服务

/data/redis/redis-7.0.5/src/redis-server /data/redis/redis-7.0.5/redis.conf

查看redis服务进程

ps -ef | grep redis

 新建服务文件redis.service

cd /lib/systemd/system/
vim redis.service
[Unit]
Description=redis-server
After=network.target

[Service]
Type=forking
ExecStart=/data/redis/redis-7.0.5/src/redis-server /data/redis/redis-7.0.5/redis.conf
PrivateTmp=true

[Install]
WantedBy=multi-user.target

CentOS安装Redis 7.0.5_第7张图片 

设置开机自动启动 

#重新加载配置
systemctl daemon-reload

# 启用开机自动启动
systemctl enable redis.service

# 启动redis服务
systemctl start redis.service

# 查看服务状态
systemctl status redis.service

# 停止服务
systemctl stop redis.service

# 取消开机自动启动
systemctl disabled redis.service

CentOS安装Redis 7.0.5_第8张图片

重启服务器后查看redis是否开机自启动

CentOS安装Redis 7.0.5_第9张图片 

 

你可能感兴趣的:(Linux,redis,centos,数据库)