Less than 1 minute
- MySQL21
- Linux10
- python10
- ECS9
- nowcoder9
- go6
- Computer Base6
- git5
- spring5
- wsl5
- java4
- computer tower4
- postgresql3
- 源码分析3
- c3
- Environment setup3
- redis2
- 架构2
- docker2
- Intro2
- Logging Framework2
- c++2
- milvus2
- wechat2
- MySQL查询深入优化2
- interview2
- architect1
- Tools1
- icon1
- markdown1
- docker compose1
- Nginx1
- k8s1
- ssh1
- springboot1
- Design Patterns1
- Term1
- CLion1
- windows1
- chocolatey1
- Blog1
- vue1
- trouble shooting1
ERROR: MISCONF Errors writing to the AOF file: Bad file descriptor
确认问题根源
尝试远程连接到redis服务器
# 如果你能直接登录该服务器,则直接登陆服务器,进入redis的客户端
$ redis-cli -h <redis-server-ip> -p <redis-port> -a <password>
# 在服务端直接尝试写入数据
$ 127.0.0.1:6379> set key value EX 60
MISCONF Errors writing to the AOF file: Bad file descriptor
# 至此确认是redis服务端的问题
About 1 min