Index: lams_build/common.properties =================================================================== RCS file: /usr/local/cvsroot/lams_build/common.properties,v diff -u -r1.44.2.7 -r1.44.2.8 --- lams_build/common.properties 28 Jan 2015 14:49:15 -0000 1.44.2.7 +++ lams_build/common.properties 15 Dec 2015 20:21:38 -0000 1.44.2.8 @@ -55,6 +55,7 @@ #======== END TOOL PROPERTIES ========= #======== DATABASE PROPERTIES ========= +db.port=3306 db.name=lams db.username=lams db.password=lamsdemo @@ -68,7 +69,7 @@ db.location=C:/lams/database # To build LAMS using standalone MySQL server, use properties below -db.url.build=jdbc:mysql://localhost:3306/${db.name}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true +db.url.build=jdbc:mysql://localhost:${db.port}/${db.name}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true&useSSL=false db.url.init.build=${db.url.build} # To build LAMS using embedded MySQL server, use properties below @@ -79,7 +80,7 @@ #db.url.init.build=${db.url.build}&server.initialize-user=true&createDatabaseIfNotExist=true # To run LAMS using standalone MySQL server, use properties below -db.url.run=jdbc:mysql://localhost:3306/${db.name} +db.url.run=jdbc:mysql://localhost:${db.port}/${db.name} # To run LAMS using embedded MySQL server, use properties below #db.url.run=jdbc:mysql:mxj://localhost:13306/${db.name}