You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mysql.sh 459B

123456789101112
  1. #!/usr/bin/env bash
  2. set -euo pipefail
  3. source scripts/property_utils.sh
  4. SQ_HOME=$1
  5. echo "configuring mysql"
  6. set_property sonar.jdbc.url "jdbc:mysql://localhost:3306/sonarqube?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance" "$SQ_HOME/conf/sonar.properties"
  7. set_property sonar.jdbc.username sonarqube "$SQ_HOME/conf/sonar.properties"
  8. set_property sonar.jdbc.password sonarqube "$SQ_HOME/conf/sonar.properties"