Docker启动WARNING:IPv4 forwarding is disabled. Networking will not work. 报错解决办法
CentOS7 Docker 启动了一个容器服务,但是启动时报错:
WARNING: IPv4 forwarding is disabled. Networking will not work.
需要做如下配置
解决办法:
vim /etc/sysctl.conf
net.ipv4.ip_forward=1 #添加这段代码
重启network服务
systemctl restart network && systemctl restart docker
查看是否修改成功 (备注:返回1,就是成功)
sysctl net.ipv4.ip_forward
net.ipv4.ip_forward = 1
评论区