1、下载软件:wget
2、解压软件:unzip sonar-3.7.4.zip
3、这里首先需要配置数据库信息:
前提是你已经安装了mysql数据库;
mysql> CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci;
mysql> grant all on sonar.* to sonar identified by 'sonar';
mysql> grant all on sonar.* to sonar@'192.168.30.70' identified by 'sonar';
mysql> flush privileges;
4、
Sonarqube
环境配置
Sonarqube
环境配置
sonarqube 环境配置
[root@localhost data]# vim /usr/sonar-3.7.4/conf/sonar.properties
修改如下字段(就是配置数据库信息,其他不用动):
5、在maven中配置sonarqube
[root@localhost data]# vim /usr/maven/conf/settings.xml
配置仓库存放文件地址(可自己设置):