标签:ase class style nbsp 密码 color http 密码登录 release
Redis 现在安装已经特别简单了,用官网的命令快速安装:
1.下载
或者
wget http://download.redis.io/releases/redis-5.0.7.tar.gz
2.解压&安装
$ tar xzf redis-5.0.7.tar.gz $ cd redis-5.0.7 $ make
3.配置&启动
$ vi redis.conf //将daemonize no 改成daemonize yes $ cd src $ ./redis-server &
4.测试
$ ./redis-cli redis> set foo bar OK redis> get foo "bar"
5.设置密码
1)
$ ./redis-cli //临时 > config get requirepass //查看 > config set requirepass 123456 //设置
2)
vi redis.conf requirepass 参数设置 //永久
3)
> auth 123456 //指定密码登录
标签:ase class style nbsp 密码 color http 密码登录 release
原文地址:https://www.cnblogs.com/julian-chang/p/11969586.html