安装redis
apt-get install redis-server
查看是否启动
ps -aux|grep redis
客户端连接
注:
安装Redis服务器,会自动地一起安装Redis命令行客户端程序
redis-cli -h 127.0.0.1 -p 6379
使用的见 详情
修改配置
1.使用redis账号访问
默认情况下,访问Redis服务器是不需要密码的
为了增加安全性,设置Redis服务器的访问密码
编辑redis.conf
vi /etc/redis/redis.conf
取消requirepass前的注释#,并设置密码
requirepass 123456
重启redis
/etc/init.d/redis-server restart
客户端连接改为
redis-cli -h 127.0.0.1 -p 6379 -a 123456
2.允许远程访问
修改配置文件redis.conf
#bind 127.0.0.1
重启redis
远程访问
redis-cli -h 192.168.5.243 -p 6379 -a 123456