1. 安装 SonarQube 和数据库
下载最新的 sonarqube-6.1、MySQL 5.7.X。
创建数据库:
CREATE DATABASE `SonarQube` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER SonarQube IDENTIFIED BY 'SonarQube#123';
GRANT ALL PRIVILEGES ON SonarQube.* TO SonarQube;
flush privileges;
配置 sonarqube 服务器, $sonarqube_home/conf/sonar.properties 文件:
sonar.jdbc.username=SonarQube
sonar.jdbc.password=SonarQube#123
sonar.jdbc.url=jdbc:mysql://localhost:3306/SonarQube?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
sonar.web.host=0.0.0.0
sonar.web.port=9000