– sudo apt install redis-server
– 启动 redis-server
– 查看是否启动:redis-cli
– 允许远程访问:sudo nano /etc/redis/redis.conf
– 将配置内容bind 127.0.0.1 改为 bind 0.0.0.0;
详细安装
一、安装
1.1 更新仓库(非必须)
sudo apt update
1.2 使用 apt 从官方 Ubuntu 存储库来安装 Redis
sudo apt-get install redis-server
二、设置密码
2.1 打开Redis配置文件redis.conf
sudo vi /etc/redis/redis.conf
2.2 找到# requirepass foobared这一行,将注释符号#去掉,将后面修改成自己的密码,例如,设置密码为123abc
requirepass 123abc
三、开启远程访问
默认情况下,Redis服务器不允许远程访问,只允许本机访问,所以我们需要设置打开远程访问的功能。
1、打开Redis服务器的配置文件redis.conf
su服务器托管网do vi /etc/redis/redis.conf
2、使用注释符号#注释bind 127.0.0.1这行
#注释服务器托管网bind
#bind 127.0.0.1
四、Redis服务控制命令
/etc/init.d/redis-server start #启动
/etc/init.d/redis-server stop #关闭
/etc/init.d/redis-server restart #重启
五、连接测试
直接输入redis-cli通过默认客户端来测试连接,正常情况下返回ping的对应值PONG
root@iZm5eetszs07500os8erolZ:~$ redis-cli
127.0.0.1:6379> ping
PONG
127.0.0.1:6379>
六、注意
修改配置文件之后需要重启Redis服务
————————————————
版权声明:本文为CSDN博主「阳光倾洒」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/quanzhan_King/article/details/130814247
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net