主页
文章
知识库
云盘
工具
登录
登录
注册
忘记密码
反馈
文章
Redis报错too many open files
Redis报错too many open files
lyjin
2023-09-14
Redis报错了 too many open files 这时候应该通过`redis-cli SHUTDOWN`停止不掉redis-server,因为connect refuse 可以直接kill掉进程 ``` # 查看PID ps -e | grep redis # 杀死进程 kill -9 PID ``` 杀死进程后,通过lsof查看端口占用情况,还是有很多,这时kill掉占用端口的进程 ``` kill -9 $(lsof -t -i:redis端口) ``` 修改redis.conf配置文件,修改timeout ``` # Close the connection after a client is idle for N seconds (0 to disable) timeout = 300 ``` 启动redis ``` redis-server /etc/redis/redis.con ```
分享
×
用手机扫码分享
没有评论
请登陆后评论
新建评论
移除
关闭
提交