溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

代碼質(zhì)量管理平臺(tái)SonarQube部署文檔

發(fā)布時(shí)間:2020-08-02 05:24:51 來源:網(wǎng)絡(luò) 閱讀:635 作者:siriaodao 欄目:軟件技術(shù)

一、系統(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
向AI問一下細(xì)節(jié)

免責(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)容。

AI