如何搭建sonar

2021-07-10 13:49:28 字數 896 閱讀 4254

三、下面就是需要修改配置檔案了,在conf目錄下找到sonar.properties檔案

將以下**注釋取消掉

四、然後啟動d:\sonarqube-5.2\sonarqube-5.2\bin\windows-x86-64\startsonar.bat檔案,是否啟動成功可以檢視埠號為9000的程序有沒有在執行,

看到這個說明已經啟動了.

下面就可以訪問sonar位址了

http://localhost:9000/,看到如下頁面,就說明sonar已經安裝完成了。預設管理員賬號密碼為: admin/admin。

在搭建sonar環境之前,需要資料庫支援,這裡選擇是mysql

執行資料庫指令碼,建立資料庫及使用者:

create database sonar character set utf8 collate utf8_general_ci; 

create user 'sonar' identified by 'sonar';

grant all on sonar.* to 'sonar'@'%' identified by 'sonar';

grant all on sonar.* to 'sonar'@'localhost' identified by 'sonar';

flush privileges;

Sonar安裝配置

sonar 是乙個很不錯的 質量監控軟體,但是我用它來分析含有中文字元utf 8編碼的 時,總是碰到錯誤退出 embedded error got an exception unexpected character 0xfffd in identifier 一開始還以為是sonar不支援中文,不過花...

sonar資料庫相關配置

首先,在mysql資料庫中新建乙個資料庫,我命名為sonar,然後,在sonar的安裝目錄下找到conf sonar.properties檔案,在其mysql5.x節點下輸入以下資訊 sonar.jdbc.url jdbc mysql ip 3306 sonar?useunicode true ch...

python指令碼sonar掃瞄所有倉庫

如下指令碼 import os import subprocess 所有倉庫字典 name path dic 拉取最新的倉庫 defcheck latest code path subprocess.call git checkout develop shell true subprocess.ca...