harbor私有仓库登录问题解决

Posted 知行知行

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了harbor私有仓库登录问题解决相关的知识,希望对你有一定的参考价值。

今天搭建harbor私有仓库,搭建完成,浏览器,进程都运行正常,就是在push镜像时,无法登陆harbor私有仓库,提示如下:

[root@host999999 ~]# docker login10.41.1.112

Username: admin

Password:

Error response from daemon: Gethttps://10.41.1.112/v2/: dial tcp 10.41.1.112:443: connect: connection refused

原因分析:

出现这问题的原因 Docker Registry 交互默认使用的是 HTTPS,但是搭建私有镜像默认使用的是 HTTP 服务,所以与私有镜像交互时出现以下错误。

解决方法:

docker系统服务添加安全进程

修改配置文件

[root@server1 ~]# vim/usr/lib/systemd/system/docker.service

需要修改的行:

ExecStart=/usr/bin/dockerd -H fd://--insecure-registry 10.41.1.112 --containerd=/run/containerd/containerd.sock

重启进程:

systemctl daemon-reload

systemctl restart docker

也可以修改:

客户端的daemon.json配置文件:

cat /etc/docker/daemon.json                      

{"insecure-registries":["10.41.1.112"] }

重启docker

systemctl restart docker

登录私有仓库:


以上是关于harbor私有仓库登录问题解决的主要内容,如果未能解决你的问题,请参考以下文章

docker push到harbor私有仓库出现的相关问题及解决办法

Linux运维容器篇 docker私有仓库harbor生产搭建

Linux运维容器篇 docker私有仓库harbor生产搭建

Linux运维容器篇 docker私有仓库harbor生产搭建

Linux运维容器篇 docker私有仓库harbor生产搭建

012.Docker私有仓库多Harbor同步部署