In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
This article will explain in detail what are the errors in Harbor Enterprise Warehouse. The quality of the article is high. Therefore, Xiaobian shares it with you for reference. I hope you have a certain understanding of relevant knowledge after reading this article.
1. Error when viewing Harbox status
[root@ecsmaster01 ~]# docker-compose ps
ERROR:
Can't find a suitable configuration file in this directory or any
parent. Are you in the right directory?
Supported filenames: docker-compose.yml, docker-compose.yaml
[root@ecsmaster01 ~]#
Solution:
The command must be executed in the Harbo installation directory.
[root@ecsmaster01 ~]# cd /data/harbor/
[root@ecsmaster01 harbor]# docker-compose ps
Name Command State Ports
---------------------------------------------------------------------------
harbor-adminserver /harbor/start.sh Up
harbor-db /entrypoint.sh postgres Up 5432/tcp
harbor-jobservice /harbor/start.sh Up
harbor-log /bin/sh -c /usr/local/bin/ ... Up 127.0.0.1:1514->10514/tcp
harbor-ui /harbor/start.sh Up
nginx nginx -g daemon off; Up 0.0.0.0:1243->443/tcp, 0.0.0.0:12443->4443/tcp, 0.0.0.0:1280->80/tcp
redis docker-entrypoint.sh redis ... Up 6379/tcp
registry /entrypoint.sh /etc/regist ... Up 5000/tcp
[root@ecsmaster01 harbor]#
2. Harbor permission problem causes service startup to fail
[root@ecsmaster01 harbor]# docker-compose ps
harbor-adminserver /harbor/start.sh Restarting.sh
harbor-db /entrypoint.sh postgres Restarting 5432/tcp
harbor-jobservice /harbor/start.sh Up
harbor-log /bin/sh -c /usr/local/bin/ ... Up 127.0.0.1:1514->10514/tcp
harbor-ui /harbor/start.sh Up
nginx nginx -g daemon off; Up 0.0.0.0:1243->443/tcp, 0.0.0.0:12443->4443/tcp, 0.0.0.0:1280->80/tcp
redis docker-entrypoint.sh redis ... Up 6379/tcp
registry /entrypoint.sh /etc/regist ... Up 5000/tcp
[root@ecsmaster01 harbour]# chmod 700 /data/harbour/runtime/database/ --Modify permissions on directory
[root@ecsmaster01 harbor]# docker-compose start --After startup, it succeeds
3. Harbor service started, client login failed (Harbor service is suspended)
[root@ecsnode01 harbor]# docker-compose ps
Name Command State Ports
-----------------------------------------------------------
harbor-adminserver /harbor/start.sh Up
harbor-db /entrypoint.sh postgres Up 5432/tcp
harbor-jobservice /harbor/start.sh Up
harbor-ui /harbor/start.sh Up
nginx nginx -g daemon off; Up 0.0.0.0:1243->443/tcp, 0.0.0.0:12443->4443/tcp, 0.0.0.0:1280->80/tcp
redis docker-entrypoint.sh redis ... Up 6379/tcp
registry /entrypoint.sh /etc/regist ... Up 5000/tcp
[root@ecsnode01 harbor]# docker login harbor.ecs.host:1280
Username (admin):
Password:
Error response from daemon: Get http://harbor.ecs.host:1280/v1/users/: dial tcp 172.31.129.90:1280: getsockopt: connection refused
[root@ecsnode01 harbor]#
Solution:
[root@ecsnode01 harbor]# docker-compose down --turn off harbor service
Stopping nginx ... done
Stopping harbor-jobservice ... done
Stopping harbor-ui ... done
Stopping harbor-adminserver ... done
Stopping registry ... done
Stopping harbor-db ... done
Stopping redis ... done
Removing network harbor_harbor
ERROR: network harbor_harbor has active endpoints
[root@ecsnode01 harbor]# docker ps -a |grep gohar -Find harbor daemon
020c645d19bf goharbor/nginx-photon:v1.6.2 "nginx -g 'daemon off" 2 minutes ago Up 2 minutes (healthy) 0.0.0.0:1280->80/tcp, 0.0.0.0:1243->443/tcp, 0.0.0.0:12443->4443/tcp nginx
7cad5120eb6f goharbor/harbor-jobservice:v1.6.2 "/harbor/start.sh" 2 minutes ago Up 2 minutes harbor-jobservice
b5f690d630ef goharbor/harbor-ui:v1.6.2 "/harbor/start.sh" 2 minutes ago Up 2 minutes (healthy) harbor-ui
dbb16a2b721f goharbor/registry-photon:v2.6.2-v1.6.2 "/entrypoint.sh /etc/" 2 minutes ago Up 2 minutes (healthy) 5000/tcp registry
a2674c617f21 goharbor/harbor-db:v1.6.2 "/entrypoint.sh postg" 2 minutes ago Up 2 minutes (healthy) 5432/tcp harbor-db
14e7eb9cda83 goharbor/harbor-adminserver:v1.6.2 "/harbor/start.sh" 2 minutes ago Up 2 minutes (healthy) harbor-adminserver
d0931ed6c137 goharbor/redis-photon:v1.6.2 "docker-entrypoint.sh" 2 minutes ago Up 2 minutes 6379/tcp redis
065a3c6e17bd goharbor/harbor-log:v1.6.2 "/bin/sh -c /usr/loca" 2 minutes ago Up 2 minutes (healthy) 127.0.0.1:1514->10514/tcp harbor-log
[root@ecsnode01 harbor]# docker rm -f 020c645d19bf 7cad5120eb6f b5f690d630ef a2674c617f21 14e7eb9cda83 d0931ed6c137 065a3c6e17bd --Delete process
[root@ecsnode01 harbor]# ./ install.sh--Restart Harbor Services
[Step 0]: checking installation environment ...
Note: docker version: 1.12.6
Note: docker-compose version: 1.17.1
[Step 1]: loading Harbor images ...
Loaded image: goharbor/registry-photon:v2.6.2-v1.6.2
Loaded image: goharbor/notary-server-photon:v0.5.1-v1.6.2
Loaded image: goharbor/clair-photon:v2.0.6-v1.6.2
Loaded image: goharbor/chartmuseum-photon:v0.7.1-v1.6.2
Loaded image: goharbor/harbor-log:v1.6.2
Loaded image: goharbor/harbor-db:v1.6.2
Loaded image: goharbor/harbor-jobservice:v1.6.2
Loaded image: goharbor/nginx-photon:v1.6.2
Loaded image: goharbor/notary-signer-photon:v0.5.1-v1.6.2
Loaded image: goharbor/harbor-migrator:v1.6.2
Loaded image: goharbor/harbor-adminserver:v1.6.2
Loaded image: goharbor/harbor-ui:v1.6.2
Loaded image: goharbor/redis-photon:v1.6.2
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
✔ ----Harbor has been installed and started successfully.----
Now you should be able to visit the admin portal at http://172.31.129.90:1280.
For more details, please visit https://github.com/goharbor/harbor .
[root@ecsnode01 harbor]# docker login harbor.ecs.host:1280
Username: admin
Password:
Login Succeeded
[root@ecsnode01 harbor]#
What are the mistakes about Harbor Enterprise Warehouse? I hope the above content can help you and learn more. If you think the article is good, you can share it so that more people can see it.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.