第一步 执行安装命令
1 |
# yum install redis |
第二步 启动Redis
1 2 3 |
# service redis start // 设置为开机自动启动 # chkconfig redis on |
第三步 连接Redis
1 |
# redis-cli |
如果报以下信息,证明没启动redis
Could not connect to Redis at 127.0.0.1:6379: Connection refused
出现这种情况可查看/etc/redis.conf中的daemonize 是否为yes,不是则修改(vi基本命令这里不做说明)
1 |
# vi /etc/redis.conf |
使用ps -ef | grep redis查看redis进程:
1 2 3 |
[root@localhost etc]# ps -ef | grep redis redis 47664 1 0 05:31 ? 00:00:00 /usr/bin/redis-server 127.0.0.1:6379 root 47808 45376 0 05:32 pts/0 00:00:00 grep –color=auto redis |
第四步 修改密码
yum方式安装的redis配置文件通常在/etc/redis.conf中,打开配置文件找到
1 |
#vim /etc/redis.conf |
查找到
#requirepass foobared
去掉行前的注释,并修改密码为所需的密码
requirepass 123123
保存文件
第五步 重启服务
1 |
#service redis restart |
第六步 测试Redis
1.登录Redis
1 |
#redis-cli -h 127.0.0.1 -p 6379 -a 123123 |
2.设置Key Value
1 |
127.0.0.1:6379> SET wangchong 100 |
3.通过Key获取Value
1 |
127.0.0.1:6379> GET wangchong |
- 本文固定链接: http://www.u3d8.com/?p=1639
- 转载请注明: 网虫虫 在 u3d8.com 发表过