docker中nexus因异常停机导致无法启动
nexus 启动报如下错误
Cannot open local storage '/nexus-data/db/config' with mode=rw
尝试修复:
# 进入容器
docker exec -u root -it nexus /bin/bash
# 在docker的nexus容器中执行
find / -name nexus-orient-console.jar
java -jar /opt/sonatype/nexus/lib/support/nexus-orient-console.jar
# 连接数据库:
CONNECT PLOCAL:/nexus-data/db/component admin admin
# 修复
REBUILD INDEX *
REPAIR DATABASE --fix-graph
REPAIR DATABASE --fix-links
REPAIR DATABASE --fix-ridbags
REPAIR DATABASE --fix-bonsai
DISCONNECT
数据库并无问题,终极修复:
Nexus内存不足,并在文件夹/nexus-data/db/config/
中创建了一些0字节的 *.wal
文件。
原文章地址:
https://blog.csdn.net/qq_27384769/article/details/114671745