Browse Source

Merge pull request #2573 from simon824/dev

update mysql config
pull/2/head
xingchun-chen 5 years ago committed by GitHub
parent
commit
632b2b503a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      dolphinscheduler-server/src/main/resources/config/install_config.conf
  2. 2
      install.sh

3
dolphinscheduler-server/src/main/resources/config/install_config.conf

@ -27,6 +27,9 @@ dbhost="192.168.xx.xx:3306"
# db username # db username
username="xx" username="xx"
# database name
dbname="dolphinscheduler"
# db passwprd # db passwprd
# NOTICE: if there are special characters, please use the \ to escape, for example, `[` escape to `\[` # NOTICE: if there are special characters, please use the \ to escape, for example, `[` escape to `\[`
password="xx" password="xx"

2
install.sh

@ -35,7 +35,7 @@ if [ $dbtype == "postgresql" ];then
datasourceDriverClassname="org.postgresql.Driver" datasourceDriverClassname="org.postgresql.Driver"
fi fi
sed -i ${txt} "s#spring.datasource.driver-class-name.*#spring.datasource.driver-class-name=${datasourceDriverClassname}#g" conf/datasource.properties sed -i ${txt} "s#spring.datasource.driver-class-name.*#spring.datasource.driver-class-name=${datasourceDriverClassname}#g" conf/datasource.properties
sed -i ${txt} "s#spring.datasource.url.*#spring.datasource.url=jdbc:${dbtype}://${dbhost}/dolphinscheduler?characterEncoding=UTF-8#g" conf/datasource.properties sed -i ${txt} "s#spring.datasource.url.*#spring.datasource.url=jdbc:${dbtype}://${dbhost}/${dbname}?characterEncoding=UTF-8\&allowMultiQueries=true#g" conf/datasource.properties
sed -i ${txt} "s#spring.datasource.username.*#spring.datasource.username=${username}#g" conf/datasource.properties sed -i ${txt} "s#spring.datasource.username.*#spring.datasource.username=${username}#g" conf/datasource.properties
sed -i ${txt} "s#spring.datasource.password.*#spring.datasource.password=${password}#g" conf/datasource.properties sed -i ${txt} "s#spring.datasource.password.*#spring.datasource.password=${password}#g" conf/datasource.properties

Loading…
Cancel
Save