赞
踩
tar -zxvf redis-5.0.5.tar.gz
使用gcc -v 命令查看gcc版本已经是4.8.5了,于是就没有再次安装,直接执行make,安装完之后再次make,出现图片内容即可。
yum install gcc-c++
make
make
make install //确认安装的东西
在该目录下可以看到redis的客户端和服务端
cd /usr/local/bin/
我们以后就使用myredis-config下的配置文件,错了还可以回到原来那里取
[root@Lzdwtl bin]# mkdir myredis-config
[root@Lzdwtl bin]# cp /home/caoyinyuan/redis-5.0.5/redis.conf myredis-config/
按图修改文件,将daemonize的值修改为yes
[root@Lzdwtl myredis-config]# vim redis.conf
[root@Lzdwtl bin]# redis-server myredis-config/redis.conf
[root@Lzdwtl bin]# redis-cli -p 6379
# 如果redis设置有密码,则需要现认证才能发送信息,"123456"是redis的密码
127.0.0.1:6379> auth "123456"
[root@Lzdwtl /]# ps -ef|grep redis
执行shutdown和exit即可推出redis服务,再次查看也发现redis的服务端和客户端进程都消失了
127.0.0.1:6379> shutdown
not connected> exit
(这个步骤的前提是redis已经开启)新建连接,地址填服务器的地址,然后点击测试连接,成功后点击右下角的确定即可。
解决办法:
[root@Lzdwtl bin]# redis-server myredis-config/redis.conf
[root@Lzdwtl bin]# redis-cli
127.0.0.1:6379> ping
(error) NOAUTH Authentication required.
127.0.0.1:6379> auth 123456
OK
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。