tar xzf redis-5.0.5.tar.gz
cd redis-5.0.5
編譯 make
src/redis-server
$ src/redis-cli redis> set foo bar OK redis> get foo "bar"
至此一個最基本的安裝已經完成了,下面咱們作一些經常使用的配置:
redis.conf
默認位置在 redis-4.0.14/redis.conf
redis
# 容許遠程登錄 #bind 127.0.0.1 # 關閉 protected-mode protected-mode no # 配置端口號 port 6379 # 後臺運行,啓用守護線程 daemonize yes # 配置文件中設置密碼(且重啓後密碼依然有效) requirepass redis # 使用指定的 conf 配置重啓服務 src/redis-server redis.conf # 驗證 127.0.0.1:6379> config get requirepass (error) NOAUTH Authentication required. 127.0.0.1:6379> auth redisqwe OK 127.0.0.1:6379> config get requirepass 1) "requirepass" 2) "redis"
2019-09-29 12:07:00ui