Docker 생 성 용기 오류 경고: IPv 4 전달 이 비활성화 되 었 습 니 다. 네트워킹 이 작 동 하지 않 습 니 다.

961 단어 linux
nginx 용기 생 성 오류:
[root@localhost nginx]# docker run -id --name=c_nginx \
> -p 80:80 \
> -v $PWD/conf/nginx.conf:/etc/nginx/nginx.conf \
> -v $PWD/logs:/var/log/nginx \
> -v $PWD/html:/usr/share/nginx/html \
> nginx
WARNING: IPv4 forwarding is disabled. Networking will not work.
1c9b9bfee38fe849b2c18eba00dcd64dafc29b72b56b812d5261af07c96ee6c0

해결:
[root@localhost nginx]#  vi  /usr/lib/sysctl.d/00-system.conf

  코드 추가: net. ipv4. ipforward=1
다시 시작:
[root@localhost nginx]# systemctl restart network

잘못된 용 기 를 삭제 하고 다시 만 들 면 됩 니 다.
[root@localhost nginx]# docker rm c_nginx
c_nginx
[root@localhost nginx]# docker run -id --name=c_nginx -p 80:80 -v $PWD/conf/nginx.conf:/etc/nginx/nginx.conf -v $PWD/logs:/var/log/nginx -v $PWD/html:/usr/share/nginx/html nginx
db58952c37623807dc38fbd891df264aa48907b0837876194c2fbc985572ccb8

좋은 웹페이지 즐겨찾기