Index: lams_build/common.properties =================================================================== diff -u -rd4997181b2a73dc16bdd0a69932d443fe7dbfbd7 -r504d89d950a4725a3ce25e7ef1932ee6e857de68 --- lams_build/common.properties (.../common.properties) (revision d4997181b2a73dc16bdd0a69932d443fe7dbfbd7) +++ lams_build/common.properties (.../common.properties) (revision 504d89d950a4725a3ce25e7ef1932ee6e857de68) @@ -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}