sonarqube-7.8 安装

笔记做个记录,不做步骤说明:

sonar.jdbc.username=root
sonar.jdbc.password=A0***
sonar.jdbc.url=jdbc:mysql://10.10.3.89:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance&useSSL=false
sonar.web.port=5000
  • vi /data/sonarqube/elasticsearch/config/elasticsearch.yml
network.host: 0.0.0.0
  • vi /etc/security/limits.conf
*                hard    nofile          65536
*                soft    nofile          65536
root soft nproc 131072
root hard nproc 131072
  • cd bin/linux-x86-64/
  • sh sonar.sh start

访问:
http://10.10.3.88:5000/about

原文地址:https://www.cnblogs.com/zoujiaojiao/p/14481453.html