Centos7 安装 redis


Centos7 安装 redis

. 查看redis的releases版本

首先安装redis之前,可以点击这里,查看最新的releases版本。

Centos7 安装 redis

最上面的版本太久了,继续往下翻看看最新版本是多少。

Centos7 安装 redis

. 下载redis的稳定版本

根据上面的页面,获取下载链接,进行下载。

1wget http://download.redis.io/releases/redis-stable.tar.gz
Centos7 安装 redis

. 解压redis安装包

1[root@server01 ~]# tar -zxvf redis-stable.tar.gz 
Centos7 安装 redisCentos7 安装 redis

. yum安装gcc依赖

1[root@server01 ~]# yum install gcc -y
Centos7 安装 redis

. 编译安装

1[root@server01 ~]# cd redis-stable
2[root@server01 redis-stable]# ls
300-RELEASENOTES  CONTRIBUTING  deps     Makefile   README.md   runtest          runtest-sentinel  src    utils
4BUGS             COPYING       INSTALL  MANIFESTO  redis.conf  runtest-cluster  sentinel.conf     tests
5[root@server01 redis-stable]# make MALLOC=libc 
Centos7 安装 redisCentos7 安装 redis

生成了src目录文件之后,进入src(源文件目录)继续编译,如下:

 1[root@server01 src]# make install
2    CC Makefile.dep
3
4Hint: It's a good idea to run 'make test' ;)
5
6    INSTALL install
7    INSTALL install
8    INSTALL install
9    INSTALL install
10    INSTALL install
11[root@server01 src]# 
Centos7 安装 redis

. 测试是否安装成功

1[root@server01 src]# pwd
2/root/redis-stable/src
3[root@server01 src]# ./redis-server 
Centos7 安装 redis
Centos7 安装 redis

. 配置redis

以后台进程方式启动:

1.修改/root/redis-stable/redis.conf:    daemonize no   将值改为yes 保存退出

1[root@server01 redis-stable]# pwd
2/root/redis-stable
3[root@server01 redis-stable]# vim redis.conf 
Centos7 安装 redis

将daemonize no 改为 yes

Centos7 安装 redisCentos7 安装 redis

指定redis.conf文件启动

1[root@server01 src]# ./redis-server /root/redis-stable/redis.conf 
21335:C 05 Dec 2018 08:49:43.682 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
31335:C 05 Dec 2018 08:49:43.682 # Redis version=5.0.2, bits=64, commit=00000000, modified=0, pid=1335, just started
41335:C 05 Dec 2018 08:49:43.682 # Configuration loaded
5[root@server01 src]# 
Centos7 安装 redis

这时候redis服务已经后台运行了,下一步就需要配置使用密码认证以及远程访问的配置。

1[root@server01 src]# ps -ef | grep redis
2root       1336      1  0 08:49 ?        00:00:00 ./redis-server 127.0.0.1:6379
3root       1371   1313  0 09:00 pts/0    00:00:00 grep --color=auto redis
4[root@server01 src]# 

. 设置redis远程连接

关闭selinux 以及 firewalld 或者 放行 6379 默认端口

1[root@server01 selinux]# service firewalld stop
2[root@server01 selinux]# systemctl disable firewalld 

配置redis.conf中将bind 127.0.0.1 改为bind 0.0.0.0或者注释该行

Centos7 安装 redis

. 设置redis连接密码

在redis.conf中搜索requirepass这一行,然后在合适的位置添加配置

Centos7 安装 redis

更新redis配置

再次执行启动加载配置的命令即可。

1[root@server01 src]# ./redis-server /root/redis-stable/redis.conf 
21182:C 05 Dec 2018 09:09:58.721 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
31182:C 05 Dec 2018 09:09:58.721 # Redis version=5.0.2, bits=64, commit=00000000, modified=0, pid=1182, just started
41182:C 05 Dec 2018 09:09:58.721 # Configuration loaded
5[root@server01 src]# 
6[root@server01 src]# ps -ef | grep redis
7root       1177      1  0 09:09 ?        00:00:00 ./redis-server 0.0.0.0:6379
8root       1185   1147  0 09:11 pts/0    00:00:00 grep --color=auto redis
9[root@server01 src]# 

. 设置开机自启动

关闭redis服务

 1[root@server01 src]# ps -ef | grep redis
2root       1177      1  0 09:09 ?        00:00:00 ./redis-server 0.0.0.0:6379
3root       1185   1147  0 09:11 pts/0    00:00:00 grep --color=auto redis
4[root@server01 src]# 
5[root@server01 src]# ps -aux | grep redis
6root       1177  0.0  0.2 144008  2028 ?        Ssl  09:09   0:00 ./redis-server 0.0.0.0:6379
7root       1187  0.0  0.0 112708   976 pts/0    R+   09:11   0:00 grep --color=auto redis
8[root@server01 src]# 
9[root@server01 src]# kill -9 1177
10[root@server01 src]# 
11[root@server01 src]# ps -aux | grep redis
12root       1189  0.0  0.0 112708   980 pts/0    R+   09:12   0:00 grep --color=auto redis
13[root@server01 src]# 
Centos7 安装 redis

查看redis-stable/utils目录下的启动脚本

Centos7 安装 redisCentos7 安装 redis
1REDISPORT=6379
2EXEC=/usr/local/bin/redis-server
3CLIEXEC=/usr/local/bin/redis-cli
4
5PIDFILE=/var/run/redis_${REDISPORT}.pid
6CONF="/etc/redis/${REDISPORT}.conf"

查看 /usr/local/bin 目录是否存在redis执行文件

Centos7 安装 redis

那么剩下就是需要设置配置文件了。

在/etc目录下新建redis目录

1[root@server01 utils]# mkdir -p /etc/redis
2[root@server01 utils]# 
3[root@server01 utils]# ls /etc/redis/
4[root@server01 utils]# 

将/redis-stable/redis.conf 文件复制一份到/etc/redis目录下,并命名为6379.conf

1[root@server01 redis-stable]# pwd
2/root/redis-stable
3[root@server01 redis-stable]# 
4[root@server01 redis-stable]# cp redis.conf /etc/redis/6379.conf
5[root@server01 redis-stable]# 
6[root@server01 redis-stable]# ls -ll /etc/redis/
7total 64
8-rw-r--r-- 1 root root 62203 Dec  5 09:32 6379.conf
9[root@server01 redis-stable]# 
Centos7 安装 redis

将redis的启动脚本复制一份放到/etc/init.d目录下

1[root@server01 utils]# cp redis_init_script /etc/init.d/redisd
2[root@server01 utils]# 
3[root@server01 utils]# ls -ll /etc/init.d/redisd 
4-rwxr-xr-x 1 root root 1352 Dec  5 09:34 /etc/init.d/redisd
5[root@server01 utils]# 
Centos7 安装 redis

设置redis开机自启动

1[root@server01 utils]# cd /etc/init.d/
2[root@server01 init.d]# ls
3functions  netconsole  network  README  redisd
4[root@server01 init.d]# chkconfig redisd on
5[root@server01 init.d]# 
Centos7 安装 redis

使用vim编辑redisd文件,在第一行加入如下两行注释,保存退出

1#!/bin/sh
2# chkconfig:   2345 90 10
3# description:  Redis is a persistent key-value database

注释的意思是,redis服务必须在运行级2,3,4,5下被启动或关闭,启动的优先级是90,关闭的优先级是10。

Centos7 安装 redis

启动以及关闭redis

 1[root@server01 init.d]# service redisd start
2/var/run/redis_6379.pid exists, process is already running or crashed
3[root@server01 init.d]# 
4[root@server01 init.d]# service redisd stop
5Stopping ...
6(error) NOAUTH Authentication required.
7Waiting for Redis to shutdown ...
8Waiting for Redis to shutdown ...
9Waiting for Redis to shutdown ...
10Waiting for Redis to shutdown ...
11Waiting for Redis to shutdown ...
12Waiting for Redis to shutdown ...
13Waiting for Redis to shutdown ...
14Waiting for Redis to shutdown ...
15Waiting for Redis to shutdown ...
16Waiting for Redis to shutdown ...
17^C
18[root@server01 init.d]
Centos7 安装 redis

可以从上面看出,当配置了redis的密码之后,停止redis的时候是需要认证的。

配置启动脚本使用密码,解决停止(NOAUTH Authentication required)的问题

修改redis启动脚本

1[root@server01 ~]# vim /etc/init.d/redisd
2# 修改添加 -a "密码"
3#$CLIEXEC -p $REDISPORT shutdown
4$CLIEXEC -a "newpwd"  -p $REDISPORT shutdown
Centos7 安装 redis
Centos7 安装 redis

. 参考文献

CentOS7安装Redis4.0.2
redis服务启动和停止(NOAUTH Authentication required)
Redis服务停止报错解决方案[NOAUTH Authentication required]

Centos7 安装 redis

 

Centos7 安装 redis

如果您觉得不错,请别忘了转发、分享、点赞让更多的人去学习, 您的举手之劳,就是对小编最好的支持,非常感谢!

 

Centos7 安装 redis 小编有话说

 

宁愿跑起来被拌倒无数次,也不愿规规矩矩走一辈子。就算跌倒也要豪迈的笑。

 

目前10000+人已关注加入我们

Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis

Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis Centos7 安装 redis

 

 

 

 

 

上一篇:VBS实现删除最后一行的空行


下一篇:配置registry加载身份验证