赞
踩
- docker: Error response from daemon: driver failed programming external connectivity on endpoint tomcat01 (00028237b8dd7b21dbce757be3bf2df0e0fcfa6c3987cac68c42d2fb6603b42d):
- (iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 0/0 --dport 49162 -j DNAT --to-destination 172.17.0.2:8080 ! -i docker0: iptables: No chain/target/match by that name.
- (exit status 1)).
在启动docker容器的时候或者做docker配置的时候,对防火墙设置重新启动等配置
会清除docker的相关配置,导致在查询防火墙规则的时候显示不到docker的链
具体原因是你删除了iptables中的链
删除链接的方式有很多种
重启firewalld防火墙即可对其清除,firewalld是centos7以上,iptables是centos6以下都会有,而firewalld的底层是涉及在iptables上的,所以在涉及防火墙firewalld的命令或者是iptables中的命令的时候小心删除其涉及docker的链
解决的方式就是重启Docker引擎
systemctl restart docker
再次查询器docker的链iptables -L
或者是通过这条命令查询iptables -t nat -nL
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。