redis 安装
https://redis.io/download/
tar -zxvf redis-7.0.12.tar.gz cd redis-7.0.12 make && make install
redis 配置
vi redis.conf #以下为修改内容 bind 127.0.0.1 -::1 修改为 bind 0.0.0.0 -::1 ;开启远程登录
supervisor 管理配置
[program:redis] command=/home/tools/redis-7.0.12/src/redis-server /home/tools/redis-7.0.12/redis.conf autostart=true autorestart=true stderr_logfile=/home/logs/redis.err.log stdout_logfile=/home/logs/redis.out.log user=root logfile_maxbytes=50MB logfile_backups=10 startsecs=1 stopsignal=INT
评论
发表评论