部署Harbor后,遇到宿主机重启,会导致Harbor重启失败;问题,有:
1、数据目录已存在,但不是空的问题,
Dec 6 17:09:58 172.18.0.1 postgresql[31367]: initdb: error: directory "/var/lib/postgresql/data/pg13" exists but is not empty
Dec 6 17:09:58 172.18.0.1 postgresql[31367]: If you want to create a new database system, either remove or empty
Dec 6 17:09:58 172.18.0.1 postgresql[31367]: the directory "/var/lib/postgresql/data/pg13" or run initdb
Dec 6 17:09:58 172.18.0.1 postgresql[31367]: with an argument other than "/var/lib/postgresql/data/pg13".
Dec 6 17:10:00 172.18.0.1 postgresql[31367]: ls: cannot access '/var/lib/postgresql/data': Operation not permitted
这个问题,目前的处理方案是:直接删除对应的挂载数据的目录;再重新启动harbor;
这个处理方案,有的时候可以,有的时候不可以;且会导致已上传的数据丢失;
启动失败的时候,会出现以下问题:
2、数据目录没权限
Dec 6 17:13:24 172.18.0.1 postgresql[31367]: initdb: error: could not create directory "/var/lib/postgresql/data/pg13": Permission denied
Dec 6 17:13:24 172.18.0.1 postgresql[31367]: creating directory /var/lib/postgresql/data/pg13 ...
Dec 6 17:13:25 172.18.0.1 postgresql[31367]: ls: cannot access '/var/lib/postgresql/data': Operation not permitted
这个时候,只能重新安装harbor,才能重启harbor。
以上问题,有没有其他的解决方案,能够不用删除数据目录,能够不用重新安装?谢谢!