Redis
Redis是一套NoSQL。
安裝
在Ubuntu下可以直接安裝官方的APT Repository:
sudo add-apt-repository -y ppa:redislabs/redis; sudo apt install -y redis; sudo apt clean
設定
這邊假定Redis放在內部信任網絡裏。
修改/etc/redis/redis.conf
,把預設只聽localhost的部份改成所有界面都聽,然後把protected-mode
關閉:
bind * -::*
protected-mode no
社定開機啟動:
sudo systemctl enable redis-server.service
外部連結
- 官方網站 (英文)