在Ubuntu上安装和配置Redis主要有两种方法:通过包管理器(如apt)或从源代码编译
sudo apt update
sudo apt install redis-server
sudo systemctl start redis-server
sudo systemctl enable redis-server
sudo systemctl status redis-server
如果显示Active: active (running)
,则表示Redis服务器正在运行。
/etc/redis/redis.conf
。你可以使用文本编辑器(如nano或vim)编辑此文件以进行配置。例如,使用nano编辑器:sudo nano /etc/redis/redis.conf
以下是一些常见的配置选项:
bind 127.0.0.1
: 将Redis绑定到本地IP地址。如果你想允许远程连接,可以将其更改为0.0.0.0
,但请注意这样做可能会带来安全风险。protected-mode no
: 禁用保护模式,允许非本地连接。在生产环境中,建议将此选项设置为yes
,并使用密码验证。port 6379
: 设置Redis服务器的端口号。默认情况下,它使用端口6379。requirepass your_password
: 设置一个密码,以保护Redis服务器。在生产环境中,建议设置一个强密码。例如,将Redis绑定到本地IP地址,禁用保护模式,使用端口6379,并设置密码为your_password
,可以将以下行添加到redis.conf
文件中:
bind 127.0.0.1
protected-mode no
port 6379
requirepass your_password
保存并退出编辑器。
重启Redis服务器以应用更改:
sudo systemctl restart redis-server
现在,你已经成功在Ubuntu上安装并配置了Redis服务器。你可以使用redis-cli
命令行工具连接到Redis服务器,并使用SET
、GET
等命令进行数据操作。