harbor同步任务异常处理

部署方式:docker-compose部署harbor
1.连接harbor的pgsql数据库

docker exec -it harbor-db bash

2.进入pgsql仓库

psql -U postgres -d postgres -h 127.0.0.1 -p 5432

密码是默认密码:root123,可以从docker-compose.yaml等配置文件中找到

3.查看数据库

postgres=# \l
                                   List of databases
     Name     |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
--------------+----------+----------+-------------+-------------+-----------------------
 notaryserver | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =Tc/postgres         +
              |          |          |             |             | postgres=CTc/postgres+
              |          |          |             |             | server=CTc/postgres
 notarysigner | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =Tc/postgres         +
              |          |          |             |             | postgres=CTc/postgres+
              |          |          |             |             | signer=CTc/postgres
 postgres     | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 registry     | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 template0    | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
              |          |          |             |             | postgres=CTc/postgres
 template1    | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
              |          |          |             |             | postgres=CTc/postgres

可以查看到registry是harbor的使用仓库

4.切换到registry仓库

\c registry

5.查看表,可从英文判断replication_XXXXX的表和复制同步有关系。

正在执行复制任务的表为replication_execution

查看表结构\d replication_execution

select * from  replication_execution;

6.停止所有正在的任务

update replication_execution set status = 'Failed',total = '1',end_time = now() where status='InProgress';

完成后退出。

7.停止所有缓存任务。

docker exec -it redis bash
redis-cli
查看数据
keys *
清理缓存数据
flushdb
再次查看数据
keys *

解决完毕

GitHub 加速计划 / ha / harbor
23.24 K
4.68 K
下载
Harbor 是一个开源的容器镜像仓库,用于存储和管理 Docker 镜像和其他容器镜像。 * 容器镜像仓库、存储和管理 Docker 镜像和其他容器镜像 * 有什么特点:支持多种镜像格式、易于使用、安全性和访问控制
最近提交(Master分支:2 个月前 )
9e55afbb pull image from registry.goharbor.io instead of dockerhub Update testcase to support Docker Image Can Be Pulled With Credential Change gitlab project name when user changed. Update permissions count and permission count total Change webhook_endpoint_ui Signed-off-by: stonezdj <stone.zhang@broadcom.com> Co-authored-by: Wang Yan <wangyan@vmware.com> 5 天前
3dbfd422 Signed-off-by: wang yan <wangyan@vmware.com> 5 天前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐