登录服务器
ssh 用户名@s2.serv00.com
下载Redis配置
mkdir ~/redis
cd ~/redis
fetch https://raw.githubusercontent.com/antirez/redis/6.2/redis.conf
修改配置
查找以下内容并修改
# 监听地址
bind 0.0.0.0
# 设置密码
requirepass password
# 设置最大客户端数
maxclients 1468
# 外部访问先在https://panel2.serv00.com/port/管理面板创建端口
port 管理面板创建的端口
# 只本机访问设置unixsocket
port 0
unixsocket /usr/home/用户名/domains/用户名.serv00.net/redis.sock
启动
redis-server ~/redis/redis.conf
# 后台启动
cd ~/redis
nohup redis-server ~/redis/redis.conf &