Linux上安裝Redis

1. 安裝ubuntu 16.04

可使用 ifconfig 命令調查伺服器ip

以下假設ip為 192.168.0.1

2. 安裝redis

sudo apt-get update
sudo apt-get install redis-server

3. 編輯/etc/redis/redis.conf

sudo vim /etc/redis/redis.conf

註解下面這行
bind 127.0.0.1

sudo /etc/init.d/redis-server restart

重啟伺服器

4. 設定密碼

redis-cli
127.0.0.1:6379> CONFIG SET requirepass {你的密碼}

5. StackExchange的連線字串

192.168.0.1:6379,password=密碼,keepalive=180,allowadmin=false,abortConnect=true