1、进入[harbor-db]容器内部

docker exec -it harbor-db /bin/bash

2、进入postgresql命令行

psql -h postgresql -d postgres -U postgres #这要输入默认密码:root123 。

psql -U postgres -d postgres -h 127.0.0.1 -p 5432 #或者用这个可以不输入密码。

3、切换到harbor所在的数据库

\c registry

4、查看harbor_user表

select * from harbor_user;

5、执行更新语句:

update harbor_user set salt=”, password=” where username=’admin’;

6、重启harbor-core 的docker容器

密码就会自动重置为之前安装时配置的Harbor12345

发表评论

邮箱地址不会被公开。 必填项已用*标注