运行一段时间后会出现无法连接的情况
#218
-
docker-compose 部署,host 模式,仅使用递归DNS功能,同一台机器上另一个pod中会指定 nameserver 为宿主机 ip。
奇怪的是,使用 debug.sh 运行后,忽然就再次恢复正常了,此时再运行 test.sh 就是通过的。然后隔了几小时再次重复同样的情况。 debug.sh 内容如下,ip 信息用 xx.xx.xx.xx 代替:
|
Beta Was this translation helpful? Give feedback.
Answered by
kkkgo
Oct 11, 2024
Replies: 1 comment 5 replies
-
看起来是unbound进程死掉了,运行debug的话检测到没有unbound 进程会尝试运行看看有什么报错信息,但看起来运行并没有报错。 |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
似乎是因为内核原因没有正确地识别到真实的可用内存。
你可以进入容器后cat /proc/meminfo看看容器认为自己得到了多少内存。
可以尝试给容器强制指定内存容量试试:
#129