Sonar安装步骤
Sonar安装步骤详解:
系统环境:centos7.0 -x86_64(最小化安装)
前置条件:jdk1.8/1.7 ,MYSQL-5.1.57
软件下载目录:/root/software
软件安装目录:/usr/local/sonarqube
软件版本:sonarqube-5.5
1、将sonar安装包导入到linux环境中 本次放在了/root/softwear
2、使用 unzip sonarqube-5.5.zip 命令解压sonar
3、使用 mv sonarqube-5.5 /usr/local/sonarqube 命令将解压后的软件移动到指定目录
4、使用 cd /usr/local/sonarqube/ 命令打开指定目录
5、使用 vi + /etc/profile 命令编辑环境变量
a) 如果此前已经写入了jdk的环境变量,这次就不需要再次写jdk环境变量
b) 环境变量内容如下:
# jdk
export JAVA_HOME=/usr/java/jdk1.7.0_79
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
#sonar
SONAR_HOME=/usr/local/sonarqube
export SONAR_HOME
6、使用 source /etc/profile 命令使环境变量立即生效,不使用此命令环境变量将在下次重启linux时生效。
7、使用 vi /usr/local/sonarqube/conf/sonar.properties 命令编辑sonar配置文件
a)在MySQL 5.X处追加mysql配置内容如下:
#此处需修改mysql地址为自己的mysql环境地址和端口和数据库名已经用户名/密码
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
sonar.jdbc.driverClassName=com.mysql.jdbc.Driver
sonar.jdbc.username=sonar
sonar.jdbc.password=12345678
sonar.sorceEncoding=UTF-8
#sonar管理员账号/密码
sonar.login=admin
sonar.password=admin
b)第112行配置sonar web访问服务名
sonar.web.context=/sonar
c)第116行配置sonar访问端口号
sonar.web.port=9000
8、使用 /usr/local/sonarqube/bin/linux-x86-64/sonar.sh start 命令启动sonar
9、使用 netstat -tnl 命令查看端口开启情况,sonar默认端口为9000和9001
10、通过浏览器访问 http://XX.XX.XX.XX:9000/sonar使用管理员账号密码登录即可