04 - SonarQube部署

2016-12-16  本文已影响480人  半个王国

目录

SonarQube的架构和集成


架构
SonarQube 做代码审查,主要包括两部分:SonarQube ServerSonarQube Plugins,其中 SonarQube Server 主要是用来处理代码分析报告并把结果存储到 SonarQube Database 中,其中的分析报告来自构建或者持续继承环境的 SonarQube Scanners 的扫描结果。 集成

部署 SonarQube 服务


SonarQube的部署分两步

安装 SonarQube Server

环境要求

安装配置数据库

安装MySQL数据库,并创建所需数据库

mysql> CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci; 
mysql> CREATE USER 'sonar' IDENTIFIED BY 'sonar';
mysql> GRANT ALL ON sonar.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar';
mysql> GRANT ALL ON sonar.* TO 'sonar'@'%' IDENTIFIED BY 'sonar';
mysql> FLUSH PRIVILEGES;

安装SonarCube(CentOS服务器)

//下载 SonarQube 5.6 L.T.S.
$ sudo wget -O /opt/sonarqube-5.6.4.zip https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-5.6.4.zip
// 解压 sonarqube
$ sudo cd /opt/ && unzip /sonarqube-5.6.4.zip
// 重命名目录
$ sudo mv sonarqube-5.6.4 sonar

配置数据库连接

编辑配置文件 /opt/sonar/conf/sonar.properties

# DATABASE
#
# IMPORTANT: the embedded H2 database is used by default. It is recommended for tests but not for
# production use. Supported databases are MySQL, Oracle, PostgreSQL and Microsoft SQLServer.

# 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.6 or greater
# Only InnoDB storage engine is supported (not myISAM).
# Only the bundled driver is supported. It can not be changed.
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance

修改服务WEB配置(可选)

编辑配置文件 /opt/sonar/conf/sonar.properties

sonar.web.host=0.0.0.0  // 默认所有IP可访问
sonar.web.port=9000  // 默认端口
sonar.web.context=  // 默认上下文 /

配置防火墙

// 添加8080端口(Jenkins默认服务端口)到防火墙
$ sudo firewall-cmd --permanent --add-port=9000/tcp
$ sudo firewall-cmd --reload

启动服务

$ sudo cd /opt/sonar/bin/linux-x86-64
$ sudo ./sonar.sh start

浏览器访问 SonarQube

安装插件


在线安装

进入菜单:Administration - System - Update Center


Paste_Image.png Paste_Image.png

建议安装的插件清单:

离线安装

下载插件:
http://docs.sonarqube.org/display/PLUG/SonarPython
拷贝插件到目录:
$SONARQUBE_HOME/extensions/plugins
重启 SonarQube

生成 Token

浏览器访问 SonarQube,http://sonar.demo.com:9000/users

Paste_Image.png
点击更新 Token,输入名称,生成Token,后面在Gradle构建脚本中集成代码审查时会用到
Paste_Image.png

FAQ


【解决办法】
下载使用最新的JDK
http://download.oracle.com/otn-pub/java/jdk/8u111-b14/jdk-8u111-linux-x64.tar.gz
【解决办法】
在数据库节点上执行已下两个命令:
# mysql_upgrade -u root -p --force
# systemctl restart mysqld

参考资料

http://docs.sonarqube.org/display/SONARQUBE56

上一篇下一篇

猜你喜欢

热点阅读