您好,登錄后才能下訂單哦!
一、系統(tǒng)軟件說明
centos-7.6
mysql-5.7.25
jdk-1.8.0_152
apache-maven-3.6.0
sonarqube-7.5
二、jdk、mysql安裝略過
校時(shí)、selinux、iptables、時(shí)區(qū)、swap、openfile_limit、jdk、mysql找文檔自行處理
創(chuàng)建sonar庫(kù),并授權(quán)給sonar用戶
三、安裝sonarqube
修改配置文件sonar.properties
sonar.jdbc.url=jdbc:mysql://192.168.8.88:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance&useSSL=false
sonar.jdbc.username=sonar #mysql用戶名
sonar.jdbc.password=sonar #mysql密碼
sonar.web.javaOpts=-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError
sonar.web.context=/sonar
sonar.web.port=9000
sonar.log.level=INFO
sonar.log.level.es=INFO
啟動(dòng)程序
> useradd sonar
> chown -R sonar.sonar /usr/local/sonarqube
> su - soanr
> /usr/local/sonarqube/elasticsearch/bin/elasticsearch -d
> /usr/local/sonarqube/bin/linux-x86-64/sonar.sh start
檢查
tail -200f /usr/local/sonarqube/logs/es.log
tail -200f /usr/local/sonarqube/logs/sonar.log
netstat -lnpt|egrep "9000|9001|9200|9300|3306"
四、集成到maven
添加以下內(nèi)容到maven配置文件setting.xml
<pluginGroups>
<pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
</pluginGroups>
<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>
http://192.168.8.88:9000/sonar
</sonar.host.url>
</properties>
</profile>
</profiles>
添加以下內(nèi)容到項(xiàng)目pom.xml
<build>
<plugins>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.6.0.1398</version>
</plugin>
</plugins>
</build>
編譯時(shí)傳入sonar:sonar參數(shù)
mvn clean package sonar:sonar
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。