发布于 2015-01-31 03:31:20 | 2184 次阅读 | 评论: 1 | 来源: PHPERZ
SonarQube代码质量管理平台
Sonar是一个用于代码质量管理的开源平台,用于管理源代码的质量,可以从七个维度检测代码质量通过插件形式,可以支持包括java,C#,C/C++,PL/SQL,Cobol,JavaScrip,Groovy等等二十几种编程语言的代码质量管理与检测
Sonar是一个用于代码质量管理的开源平台,用于管理源代码的质量,可以从七个维度检测代码质量通过插件形式,可以支持包括java,C#,C/C++,PL/SQL,Cobol,JavaScrip,Groovy等等二十几种编程语言的代码质量管理与检测
sonarqube-4.5.zip和sonar-runner-dist-2.4.zip
下载地址:http://www.sonarqube.org/downloads/
unzip sonarqube-4.5.zip
unzip sonar-runner-dist-2.4.zip
export SONAR_RUNNER_HOME=/opt/sonar/sonar-runner-2.4
export PATH=$SONAR_RUNNER_HOME/bin:$PATH
修改sonarqube的配置%SONARQUBE_HOME%/conf/sonar.properties
# User credentials.
# Permissions to create tables, indices and triggers must be granted to JDBC user.
# The schema must be created first.
sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
#----- MySQL 5.x
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
修改sonar-runner的配置%SONAR_RUNNER_HOME%/conf/sonar-runner.properties
#----- Default SonarQube server
sonar.host.url=http://localhost:9000
#----- PostgreSQL
#sonar.jdbc.url=jdbc:postgresql://localhost/sonar
#----- MySQL
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8
#----- Global database settings
sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
#----- Default source code encoding
sonar.sourceEncoding=UTF-8
#----- Security (when 'sonar.forceAuthentication' is set to 'true')
sonar.login=admin
sonar.password=admin
create database if not exists sonar character set utf8;
CREATE USER 'sonar'@'%' IDENTIFIED BY 'sonar';
CREATE USER 'sonar'@'localhost' IDENTIFIED BY 'sonar';
grant all privileges on sonar.* to 'sonar'@'%' identified by 'sonar';
grant all privileges on sonar.* to 'sonar'@'localhost' identified by 'sonar';
flush privileges;
%SONARQUBE_HOME%/bin/linux-x86-64/sonar.sh
下载汉化包 http://repository.codehaus.org/org/codehaus/sonar-plugins/l10n/sonar-l10n-zh-plugin/
放入%SONARQUBE_HOME%/extensions/plugins/下
重启server即可