Redis
跳转到导航
跳转到搜索
Redis是一套NoSQL。
安装
在Ubuntu下可以直接安装官方的APT Repository:
sudo add-apt-repository -y ppa:redislabs/redis; sudo apt install -y redis; sudo apt clean
如果只要装client端的话:
sudo add-apt-repository -y ppa:redislabs/redis; sudo apt install -y redis-tools; sudo apt clean
设定
这边假定Redis放在内部信任网络里。
修改/etc/redis/redis.conf
,把预设只听localhost的部分改成所有界面都听,然后把protected-mode
关闭:
bind * -::*
protected-mode no
如果要打开密码认证,旧版的设定方式是这样:
bind * -::*
protected-mode yes
requirepass PassW0rd
设定开机启动:
sudo systemctl enable redis-server.service
外部链接
- 官方网站 (英文)