「SonarQube」- 备份与恢复 @20210424

2021/4/24 18:28:47

本文主要是介绍「SonarQube」- 备份与恢复 @20210424,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

问题描述

我们使用 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




这篇关于「SonarQube」- 备份与恢复 @20210424的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程