共计 576 个字符,预计需要花费 2 分钟才能阅读完成。
装置 Redis
更新源
sudo apt update
装置 redis
sudo apt install redis-server
查看 redis 服务状态
sudo systemctl status redis-server
容许近程拜访 Redis
编辑 redis 配置文件
vi /etc/redis/redis.conf
#正文掉 bind 127.0.0.1 ::1
如果 redis.conf 文件关上为空
批改文件权限 sudo chmod 755 /etc/redis/redis.conf
如果批改文件后:wq 无奈保留
先:q! 强制退出
而后 sudo !! 进入并进行批改 :wq 保留
重启 Redis 服务
sudo systemctl restart redis-server
查看 6379 端口的状况
ss -an | grep 6379
配置防火墙容许指定的 IP 拜访 Redis 的端口
sudo ufw allow proto tcp from 192.168.1.3/24 to any port 6379
设置登录明码
(也能够不设置, 默认无需明码登录)
vi /etc/redis/redis.conf
搜寻来找到上面这行正文
#requirepass foobared
勾销正文,把 foobared 改为你想设置的 redis 的登录明码。比方:requirepass 123456
保留后,重启 redis 服务
sudo systemctl restart redis.service
正文完