Docker push 报错:received unexpected HTTP status: 500 Internal Server Error
2020-12-28 05:30
标签:style enforce ted color dock span linux pre nginx 将镜像推送到私有仓库,出现错误“received unexpected HTTP status: 500 Internal Server Error” 关闭SELinux。 临时关闭SELinux: 永久关闭,重启后生效: 关闭SELinux 之后, docker push 就可以了。 Docker push 报错:received unexpected HTTP status: 500 Internal Server Error 标签:style enforce ted color dock span linux pre nginx 原文地址:https://www.cnblogs.com/morgan363/p/13846080.html现象描述
[root@docker ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
docker.io/nginx 1.18.0 b5390718bd8e 6 days ago 132.8 MB
docker.io/registry latest 2d4f4b5309b1 4 months ago 26.22 MB
[root@docker ~]# docker tag docker.io/nginx:1.18.0 192.168.1.31:5000/nginx:1.18.0
[root@docker ~]# docker push 192.168.1.31:5000/nginx:1.18.0
The push refers to a repository [192.168.1.31:5000/nginx]
350c442bd17b: Retrying in 1 second
11ebfd90bb46: Retrying in 1 second
77a84e783709: Retrying in 1 second
8ea8cf9de1a9: Retrying in 1 second
d0fe97fa8b8c: Retrying in 1 second
received unexpected HTTP status: 500 Internal Server Error
解决办法:
[root@docker ~]# setenforce 0
[root@docker ~]# sed -i ‘s#SELINUX=enforcing#SELINUX=disabled#g‘ /etc/selinux/config
[root@docker ~]# egrep ‘^SELINUX=‘ /etc/selinux/config
SELINUX=disabled
[root@docker ~]# docker push 192.168.1.31:5000/nginx:1.18.0
The push refers to a repository [192.168.1.31:5000/nginx]
350c442bd17b: Pushed
11ebfd90bb46: Pushed
77a84e783709: Pushed
8ea8cf9de1a9: Pushed
d0fe97fa8b8c: Pushed
1.18.0: digest: sha256:4528b7efb5e09b3ef22a4a049e839164d50ccac1aaf3170ac75fe12fd1181f6b size: 1362
上一篇:原生js
文章标题:Docker push 报错:received unexpected HTTP status: 500 Internal Server Error
文章链接:http://soscw.com/index.php/essay/38760.html