2019年4月10号,SonarQube发文称在7.9之后,所有的SonarQube的版本(CE、DE、EE和DCE)中将停止对MySQL的支持。SonarQube本身提供了一个演示的H2的数据库,同时支持对于MySQL、Postgresql、Oracle等主流数据库的支持。因此很多网站上写的Sonarcube还是基于MySQL的安装部署已经过时了,本文详细讲解SonarQube在Mac OS系统的安装部署。
1、下载安装包
brew install sonarqube
brew install sonar-scanner
2、配置
2.1 进入 sonarqube 的 conf 目录
cd /usr/local/Cellar/sonarqube/9.1.0.47736/libexec/conf
用记事本或 vim 命令打开编辑 sonar.properties,添加如下配置:
sonar.host.url=http://localhost:9000/sonarqube
#web登陆账号和密码
sonar.login=admin
sonar.password=admin
2.2 用记事本或 vim 命令打开 wrapper.conf,添加:
# Path to JVM executable. By default it must be available in PATH.
# Can be an absolute path, for example:
# wrapper.java.command=/path/to/my/jdk/bin/java
wrapper.java.command=/Library/Java/JavaVirtualMachines/jdk-17.0.1.jdk/Contents/Home/bin/java
3、配置环境变量
命令行执行:vim ~/.bash_profile,编辑:
# sonar环境
export SONAR_HOME=/usr/local/Cellar/sonarqube/9.1.0.47736
export SONAR_SCANNER_HOME=/usr/local/Cellar/sonar-scanner/4.6.2.2472_1
export PATH=$M2:$PATH:$SONAR_SCANNER_HOME/bin:$JAVA_HOME/bin
保存后,终端执行source ~/.bash_profile使环境变量生效
最后,终端执行sonar-scanner --version,显示如下即配置成功:
INFO: Scanner configuration file: /usr/local/Cellar/sonar-scanner/4.2.0.1873/libexec/conf/sonar-scanner.properties
INFO: Project root configuration file: NONE
INFO: SonarQube Scanner 4.2.0.1873
INFO: Java 1.8.0_191 Oracle Corporation (64-bit)
INFO: Mac OS X 10.14.5 x86_64
4、汉化
汉化下载地址:https://github.com/xuhuisheng/sonar-l10n-zh/releases/tag/sonar-l10n-zh-plugin-9.1
将生成的jar包放在/usr/local/Cellar/sonarqube/9.1.0.47736/libexec/extensions/plugins目录下
5、启动 sonarqube
cd /usr/local/Cellar/sonarqube/9.1.0.47736/bin
./sonar start
查看启动日志:
tail -f /usr/local/Cellar/sonarqube/9.1.0.47736/libexec/logs/sonar.xxx.log
关闭 sonarqube:
./sonar stop
启动 sonarqube 后,浏览器打开:http://localhost:9000
默认登录用户名和密码均为:admin