zoukankan      html  css  js  c++  java
  • Docker push 报错:received unexpected HTTP status: 500 Internal Server Error

    现象描述

          将镜像推送到私有仓库,出现错误“received unexpected HTTP status: 500 Internal Server Error”

    [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

    解决办法:

          关闭SELinux。

    临时关闭SELinux:

    [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

         关闭SELinux 之后, docker push 就可以了。

    [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
  • 相关阅读:
    JavaScript -- BATweb笔试面试
    1--html属性
    0--node安装
    1-- express
    lsof命令
    1--字符串和数组的指向问题
    19--复杂链表的复制。
    18--二叉树中和为某一值的路径
    剑指offer——64和为s的数字
    剑指offer——04二维数组中的查找
  • 原文地址:https://www.cnblogs.com/morgan363/p/13846080.html
Copyright © 2011-2022 走看看