Harbor正確密碼登入不上去

strivechao發表於2022-07-26

Harbor正確密碼登入不上去

[root@hub harbor]# docker ps

找到harbor-db


 docker exec -it 3336e340e8b5 /bin/bash

 psql -h postgresql -d postgres -U postgres

root123


postgres=# \c registry                               

You are now connected to database "registry" as user "postgres".

registry=# select * from harbor_user;

 

registry=# update harbor_user set password='a71a7d0df981a61cbb53a97ed8d78f3e', 

salt='ah3fdh5b7yxepalg9z45bu8zb36sszmr', 

password_version='sha1' where username='admin';

UPDATE 1


registry=# 

registry=# \q

postgres [ / ]$ exit

exit

[root@hub harbor]# docker restart harbor-core

harbor-core


Harbor登入時提示 “核心功能無法使用”

 


原因:assword_version加密版本錯了,重置密碼並將sha256改成sha1

再次輸入賬戶admin,密碼Harbor12345,登入成功


重啟:

1、定位到harbor的位置,如/var/www/harbor

2、停止命令

docker-compose stop

3、啟動命令

docker-compose up -d


7、配置開機自啟:

vim /etc/rc.local
/usr/local/bin/docker-compose -f /usr/local/harbor/docker-compose.yml up -d


docker-compose 加速站



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25469263/viewspace-2907247/,如需轉載,請註明出處,否則將追究法律責任。

相關文章