贺盛德朱庇特朱庇特朱庇特阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹阿齐兹百分之七点四云娥里兹4.0,魏冄,阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金阿金,我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊!我的天啊,你是说范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹?范仲淹百分之七点四云娥4.0英寸重定向器菲兰达。
页:1
1 .{ 1 }是魏冄
[root @ VM _ 2 _ 13 _ centes redis]# http://www .新浪。com/
2 ._范儿
[根@ VM _ 2 _ 13 _ centes redis]# http://www。新浪。www.com/http://。新浪。com/
{ 1 }沙吾提
[root @ VM _ 2 _ 13 _ centes redis]# http://www .新浪。com/
[root @ VM _ 2 _ 13 _ centes redis]# http://www .新浪。com/
共计1708人
一、
-rw-r-1根1737022年3月27日00:64 redis-4。0 .9 .焦油。地面零点
4 ."绿筠小姐
[root @ VM _ 2 _ 13 _ centes redis-4。0 .9]# http://www。新浪。com/
[root @ VM _ 2 _ 13 _ centes redis-4。0 .9]# http://www。新浪。com/
科学研究委员会制作安装激光唱片
使[1]3330进入目录`/usr/local/redis/redis-4。0 .9/src '
CC Makefile.dep文件
使[1]3330离开目录`/usr/local/redis/redis-4。0 .9/src '
使[1]3330进入目录`/usr/local/redis/redis-4。0 .9/src '
提示:是运行"测试"的好主意;)
INSTALL(安装)
INSTALL(安装)
INSTALL(安装)
INSTALL(安装)
INSTALL(安装)
5三月再说一遍阿云哥
[根@ VM _ 2 _ 13 _ centos ~]# http://www。新浪。com/
Redis服务器v=4。0 .9 sha=000000000:0 malloc=jea loc-4。0 .3位=64内部版本=c97 ec2 b5和9b86914
6 ._唉哟再说一遍
[root @ VM _ 2 _ 13 _ centes redis]# http://www .新浪。com/
[root @ VM _ 2 _ 13 _ centes redis]# http://www .新浪。com/
TCP 0 0 127。0 .0 .1:6379 0 .0 .0: *列出5305/redis服务器一
[
root@VM_2_13_centos redis]# ps -ef | grep redis
root 5305 1 0 21:38 ? 00:00:00 /usr/local/redis/bin/redis-server 127.0.0.1:6379
root 5356 30807 0 21:39 pts/1 00:00:00 grep --color=auto redis
7、通过客户端登录
[root@VM_2_13_centos ~]# redis-cli
127.0.0.1:6379>
备注:如果要卸载redis,把/usr/local/redis/bin/目录下的redis删除即可。为了卸载干净,你还可以把解压和编译的redis包及配置的redis.conf也删除。
二、安全配置
1、设置密码
redis的默认安装是不设置密码的,可以在redis.conf中进行配置
[root@VM_2_13_centos ~]# vim /etc/redis/redis.conf
requirepass qcloud@2018
或者通过命令配置
127.0.0.1:6379>CONFIG set requirepass qcloud@2018
由于Redis的性能极高,并且输入错误密码后Redis并不会进行主动延迟(考虑到Redis的单线程模型),所以攻击者可以通过穷举法破解Redis的密码(1秒内能够尝试十几万个密码),因此在设置时一定要选择复杂的密码,可以用随机密码生成器生成。
注意:配置Redis复制的时候如果主数据库设置了密码,需要在从数据库的配置文件中通过masterauth参数设置主数据库的密码,以使从数据库连接主数据库时自动使用AUTH命令认证。
验证密码是否有效,是否需要认证
[root@VM_2_13_centos ~]# redis-cli
127.0.0.1:6379>
127.0.0.1:6379> keys *
(error) NOAUTH Authentication required.
127.0.0.1:6379>
127.0.0.1:6379> auth qcloud@2018
OK
127.0.0.1:6379>
127.0.0.1:6379> keys *
(empty list or set)
2、禁用高危命令
目前该命令可以正常使用
127.0.0.1:6379> flushall
OK
关闭redis,但是由于上面设置了密码,必须要认证成功后才能关闭
[root@VM_2_13_centos ~]# redis-cli shutdown
(error) NOAUTH Authentication required.
[root@VM_2_13_centos ~]# redis-cli -a qcloud@2018 shutdown
[root@VM_2_13_centos ~]#
[root@VM_2_13_centos ~]# ps -ef | grep redis
root 6144 5406 0 21:54 pts/0 00:00:00 grep --color=auto redis
修改配置文件redis.conf,增加如下行:
[root@VM_2_13_centos ~]# vim /etc/redis/redis.conf
rename-command FLUSHALL ""
rename-command CONFIG ""
rename-command EVAL ""
重新启动redis
[root@VM_2_13_centos ~]# redis-server /etc/redis/redis.conf
[root@VM_2_13_centos ~]#
[root@VM_2_13_centos ~]# redis-cli
127.0.0.1:6379>
127.0.0.1:6379> keys *
(error) NOAUTH Authentication required.
127.0.0.1:6379>
127.0.0.1:6379> auth qcloud@2018
OK
127.0.0.1:6379>
127.0.0.1:6379> flushall
(error) ERR unknown command 'flushall'
127.0.0.1:6379>
127.0.0.1:6379> config
(error) ERR unknown command 'config'
127.0.0.1:6379>
127.0.0.1:6379> eval
(error) ERR unknown command 'eval'
通过上面的报错可以发现,在配置文件禁用的三个命令无法使用
3、绑定只能本机访问
[root@VM_2_13_centos ~]# vim /etc/redis/redis.conf
bind 127.0.0.1
4、设置redis开启自启动
[root@VM_2_13_centos ~]# vim /etc/rc.d/rc.local
/usr/local/redis/bin/redis-server /etc/redis/redis.conf &
以上是“CentOS 7.4如何安装redis 4.0”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!
内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/79830.html