在linux上离线安装harbor的docker 私有仓库
Posted muzizongheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在linux上离线安装harbor的docker 私有仓库相关的知识,希望对你有一定的参考价值。
目录1. 下载, https://github.com/goharbor/harbor/releases
3. copy解压后的目录到/usr/local/harbor.
4.直接安装, ./usr/local/harbor/install.sh
7. 如果遇到报错:ERROR:root:Please specify hostname, 那原因是启动harbor时没有修改harbor.yml里的内容。
9. 当上述问题都解决,并且install.sh正确运行后, 信息如下:
10.在浏览器中敲入http://10.6.119.106 即可访问harbor ui。 默认登录名和密码在harbor.yml中是:
调试和离线文件参考:https://blog.csdn.net/muzizongheng/article/details/105067876
1. 下载, https://github.com/goharbor/harbor/releases
2. copy到目标linux上解压
3. copy解压后的目录到/usr/local/harbor.
sudo cp harbor/* /usr/local/harbor4.直接安装, ./usr/local/harbor/install.sh
5. 如果遇到报错
prepare base dir is set to /usr/local/harbor docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused "process_linux.go:449: container init caused \\"write /proc/self/attr/keycreate: permission denied\\"": unknown. 解决办法是把/etc/selinux下的config文件中的 SELINUX=enforcing 改为 SELINUX=disabled6. 如果遇到Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? , 那应该是docker安装后没有设置为service,因此你需要在机器重启后再次启动docker。
解决办法是可以参考linux安装docker中的方法: sudo dockerd &7. 如果遇到报错:ERROR:root:Please specify hostname, 那原因是启动harbor时没有修改harbor.yml里的内容。
解决办法时把配置文件中默认的hostname: reg.mydomain.com, 改为本地的ip。 比如: hostname:10.6.119.1068. 如果遇到报错:ERROR:root:Error: The protocol is https but attribute ssl_cert is not set。 原因是harbor.yml中默认是配置https的端口及证书路径的。
解决办法是把这些配置都注释掉。 # https related config # https: # # https port for harbor, default is 443 # port: 443 # # The path of cert and key files for nginx # certificate: /your/certificate/path # private_key: /your/private/key/path9. 当上述问题都解决,并且install.sh正确运行后, 信息如下:
✔ ----Harbor has been installed and started successfully.----10.在浏览器中敲入http://10.6.119.106 即可访问harbor ui。 默认登录名和密码在harbor.yml中是:
admin/Harbor12345调试和离线文件参考:https://blog.csdn.net/muzizongheng/article/details/105067876
以上是关于在linux上离线安装harbor的docker 私有仓库的主要内容,如果未能解决你的问题,请参考以下文章