blob: 8b49a93f52c75986b474c4d9c4419c7ed3b2f68b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# MySql
sonar.jdbc.url: jdbc:mysql://localhost:3306/sonar?autoReconnect=true&useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true
sonar.jdbc.driverClassName: com.mysql.jdbc.Driver
sonar.jdbc.username: sonar
sonar.jdbc.password: sonar
sonar.jdbc.maxActive: 30
sonar.jdbc.maxIdle: 10
sonar.jdbc.minIdle: 2
sonar.jdbc.maxWait: 5000
sonar.jdbc.minEvictableIdleTimeMillis: 600000
sonar.jdbc.timeBetweenEvictionRunsMillis: 30000
sonar.runtime.mode: development
|