《LINUX入门:Ubuntu 14.04安装配置SonarQube 6.0》要点:
本文介绍了LINUX入门:Ubuntu 14.04安装配置SonarQube 6.0,希望对您有用。如果有疑问,可以联系我们。
mysql-server-5.6(也支持其他数据库,不过我选用的mysql)
sonarqube6.0
jdk1.8
sonar-runner-2.4
mysql -u root -p
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'@'%' IDENTIFIED BY 'sonar';
mysql> GRANT ALL ON sonar.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar';
mysql> FLUSH PRIVILEGES;
注:在配置数据库之前必定要确保上述软件版本正确,否则会运行出错.一旦运行出错,需要删除sonar数据库,重新运行上述配置语句.
export SONAR_HOME="/home/xx/file/sonarqube-6.0"
export SONAR_RUNNER_HOME="/home/xx/file/sonar-runner-2.4"
然后将SONAR_RUNNER_HOME/bin添加到path中去
vi $SONAR_HOEME/conf/sonar.properties
sonar.jdbc.username:sonar
sonar.jdbc.password:sonar
sonar.jdbc.url:jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true
sonar.jdbc.driverClassName:com.mysql.jdbc.Driver
vi $SONAR_RUNNER_HOME/conf/sonar-runner.properties
sonar.host.url=[http://localhost:9000](http://localhost:9000/sonar)
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8
sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
注:以上配置文件中原来就存在的,只需要去掉相应的注释符号即可.
以上运行情况都准备好了之后,即可开始运行.
在$SONAR_HOME/bin/linux-x86-64/目录下运行sonar.sh
sonar.sh start
可以通过查看$SONAR_HOME/log/sonar.log查看是否胜利运行,如果看到如下日志
即成功运行.可以在浏览器中访问http://localhost:9000,如果能正常打开,说明配置正确.
注:这里我碰到一个问题,就是访问http://localhost:9000一直访问不了,后来改为访问http://localhost:9000/sonar,就能正常访问了.账户暗码默认的为admin,admin.
在待检测工程目录下,直接运行sonar-runner,即开始检测.如果这里显示无法连接http://localhost:9000/,可以检查之前配置是否有误.如果出现下面日志,阐明解析成功
19:01:51.759 INFO - Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
19:01:51.759 INFO - More about the report processing at http://localhost:9000/sonar/api/ce/task?id=AVb6Au95YHi3B3QHd6Kc
19:01:51.800 INFO - Task total time: 5.674 s
根据日志中链接可直接查看检测成果.
配置Sonar、Jenkins进行连续审查
sonarQube代码质量管理对象环境筹建笔记
SonarQube代码质量治理平台安装与使用
SonarQube升级进程记录
Ubuntu 16.04下安装设置装备摆设SonarQube+MySQL
在Fedora 21上搭建Jenkins+SonarQube的Maven项目自动化测试平台
Sonar 的详细先容:请点这里
Sonar 的下载地址:请点这里
本文永远更新链接地址:
欢迎参与《LINUX入门:Ubuntu 14.04安装配置SonarQube 6.0》讨论,分享您的想法,维易PHP学院为您提供专业教程。