问题描述
我们使用 Docker 运行 SonarQube 服务。现在我们需要对 SonarQube 服务进行备份。
该笔记将记录: SonarQube 服务的数据备份与恢复方法。
解决方案
官方文档对备份恢复的描述倒是简单,如下(Backup and Restore | SonarQube Docs):
Backing Up Data Most databases come with backup tools. We recommend using these tools to back up your data. Restoring Data To restore data from backup, follow these steps: Stop the server. Restore the backup. Drop the Elasticsearch indexes by deleting the contents of $SQ_HOME/data/es6 directory. Restart the server.
简单的数据备份
因为不到 4G 数据量,我们也就简单做:
1)停止 SonarQube 服务:docker-compose down
2)执行数据全量备份:rsync --delete -a /path/to/sonarqube /path/to/sonarqube.backup.$(date "+%Y%m%d")
3)重新启动 SonarQube 服务:docker-compose up
相关文章
「nil」- 3.Problem Solving (how-to)
参考文献
Backup and Restore | SonarQube Docs