下載地址 http://www.redis.cn/download.htmlhtml
解壓 tar -zxvf redis-5.0.3.tar.gzredis
$ cd redis-5.0.3ui
$ makespa
$ cd src server
$ ./redis-serverhtm
$ cd redis-5.0.3get
$ vi redis.confit
將daemonize no改成 daemonize yes保存退出class
$ cd src 後臺
$ ./redis-server ../redis.conf
$ cd src
$ ./redis-cli
127.0.0.1:6379> set a b
OK
127.0.0.1:6379> get a
"b"
$ cd redis-5.0.3
$ vi redis.conf
輸入 / # requirepass foobared 查找
# requirepass foobared
requirepass yourpassword //此處注意,行前不能有空格
保存退出
重啓生效