只是說(shuō)說(shuō)遇到的坑吧,
創(chuàng)新互聯(lián)公司專(zhuān)注于汝陽(yáng)網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供汝陽(yáng)營(yíng)銷(xiāo)型網(wǎng)站建設(shè),汝陽(yáng)網(wǎng)站制作、汝陽(yáng)網(wǎng)頁(yè)設(shè)計(jì)、汝陽(yáng)網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造汝陽(yáng)網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供汝陽(yáng)網(wǎng)站排名全網(wǎng)營(yíng)銷(xiāo)落地服務(wù)。第一點(diǎn):不同的PHP版本,需要安裝不同的sonar,最新的sonar版本,只適用于高版本的php;
第二點(diǎn),分析php代碼的擴(kuò)展同樣如此,需要用到對(duì)應(yīng)版本的php代碼分析擴(kuò)展;
第三點(diǎn),在增加php項(xiàng)目,開(kāi)始分析之后,sonar需要操作數(shù)據(jù)庫(kù),并分析代碼,可能會(huì)大量消耗cpu和讀取數(shù)據(jù)庫(kù),造成機(jī)器負(fù)載飆升,同時(shí),分析代碼可能需要很長(zhǎng)的時(shí)間,在此期間重啟sonar,停止sonar,可能會(huì)導(dǎo)致開(kāi)啟失敗,內(nèi)存溢出報(bào)錯(cuò),這個(gè)要多等一段時(shí)間,根據(jù)機(jī)器性能不等,我的是在半個(gè) 小時(shí)左右。
下邊貼出安裝的過(guò)程
我安裝的是sonarqube-5.2,嘗試最新的6.4版本,發(fā)現(xiàn)有錯(cuò)誤。
第一步安裝
wget -c unzip -n sonarqube-5.2.zip -d /usr/local第二步配置環(huán)境
vi + /etc/profile
添加
SONAR_HOME=/usr/local/sonarqube-5.2
export SONAR_HOME
保存退出并使配置生效
source /etc/profile
第三步配置sonar.properties
[root@code-test ~]# vi /usr/local/sonarqube-5.2/conf/sonar.properties
打開(kāi)后,找到
sonar.host.url=http://localhost:9999
sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance
sonar.web.host=0.0.0.0
sonar.web.context=
sonar.web.port=9999
sonar.search.port=9998
PS:SonarQube默認(rèn)監(jiān)聽(tīng)9000端口。但是我的服務(wù)器的web是nginx,已占用9000,所以我修改為9999
search端口改成9998
第四步啟動(dòng)服務(wù)
cd /usr/local/sonarqube-5.2/bin/linux-x86-64
./sonar.sh start
另外,啟動(dòng)/停止/重啟命令如下:
#./sonar.sh start 啟動(dòng)服務(wù)
#./sonar.sh stop 停止服務(wù)
#./sonar.sh restart 重啟服務(wù)
第五步訪問(wèn)SonarQube Web管理界面。如果能夠看到這個(gè)界面證明SonarQube安裝成功啦。
我的是直接訪問(wèn)ip加端口號(hào) ip:9999
下邊安裝sonarqube runner
sonar runner是分析項(xiàng)目代碼的工具.
第一步:將下載的http://repo1.maven.org/maven2/org/codehaus/sonar/runner/sonar-runner-dist/2.4/sonar-runner-dist-2.4.zip解壓后放到/usr/local目錄下。具體步驟如下:
wget -c http://repo1.maven.org/maven2/org/codehaus/sonar/runner/sonar-runner-dist/2.4/sonar-runner-dist-2.4.zip
unzip -n sonar-runner-dist-2.4.zip -d /usr/local
第二步:配置環(huán)境變量
vi + /etc/profile
添加
SONAR_RUNNER_HOME=/usr/local/sonar-runner-2.4/
PATH=.:$SONAR_RUNNER_HOME/bin
export SONAR_RUNNER_HOME
#包含sonar和sonar-runner的環(huán)境變量設(shè)置
export SONAR_HOME=/usr/local/sonarqube-5.2
export SONAR_RUNNER_HOME=/usr/local/sonar-runner-2.4 export
PATH=$PATH:$SONAR_HOME/bin:$SONAR_RUNNER_HOME/bin
保存并退出
source /etc/profile
第三步:配置sonar-runner.properties
vi /usr/local/sonar-runner-2.4/conf/sonar-runner.properties
找到
sonar.host.url=http://localhost:9999
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8
sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
sonar.login=admin
sonar.password=admin
將前面的#去掉
PS:剛才我們已經(jīng)看到SonarQube已經(jīng)可以訪問(wèn)了,所以就將sonar.host.url改成了實(shí)際的訪問(wèn)地址。
第四步:運(yùn)行sonar-runner分析源代碼
Sonar官方已經(jīng)提供了非常全的代碼樣例便于新手入門(mén)用。
下載地址:https://github.com/SonarSource/sonar-examples/archive/master.zip
下載后使用unzip解壓。進(jìn)入php執(zhí)行sonar-runner命令即可。操作命令如下:
wget -c https://github.com/SonarSource/sonar-examples/archive/master.zip
unzip master.zip
cd sonar-examples-master/projects/languages/php/php-sonar-runner
sonar-runner
如果能夠看到下面的輸出信息,證明你的SonarQube Runner安裝并配置正確啦。
如果分析自己的項(xiàng)目,可能需要很久
參考鏈接 http://www.cnblogs.com/linky520/p/5594445.html
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
文章標(biāo)題:安裝sonarQube代碼質(zhì)量管理平臺(tái)分析PHP代碼-創(chuàng)新互聯(lián)
文章網(wǎng)址:http://vcdvsql.cn/article8/dsogip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、響應(yīng)式網(wǎng)站、網(wǎng)站導(dǎo)航、App開(kāi)發(fā)、電子商務(wù)、網(wǎng)站內(nèi)鏈
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容