Index: lams_build/common.properties =================================================================== diff -u -r7475d08afc280b5e2e5ddf04e8bf35e3166aaf80 -r658fe82d333cc79e8956978a0956960f728a7ff8 --- lams_build/common.properties (.../common.properties) (revision 7475d08afc280b5e2e5ddf04e8bf35e3166aaf80) +++ lams_build/common.properties (.../common.properties) (revision 658fe82d333cc79e8956978a0956960f728a7ff8) @@ -69,26 +69,8 @@ # you can set own timezone, for example "Europe/Warsaw" db.timezone=UTC -# Basedir of embedded MySQL server. This is also the place where data is stored. -# Set it if you use MXJ for running and/or building LAMS. -db.location=C:/lams/database - -# To build LAMS using standalone MySQL server, use properties below db.url.build=jdbc:mysql://${db.host}:${db.port}/${db.name}?characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&autoReconnect=true&useUnicode=true&useSSL=false=&allowPublicKeyRetrieval=true&useLegacyDatetimeCode=false&serverTimezone=${db.timezone} -db.url.init.build=${db.url.build} - -# To build LAMS using embedded MySQL server, use properties below -# If you build LAMS this way, you will also need to run it using the embedded server. -# db.config.build configuration is a replacement for my.ini and it's optional. If left blank, server defaults will be used. -#db.config.build=&server.skip-external-locking&server.key_buffer_size=16K&server.max_allowed_packet=1M&server.table_open_cache=4&server.sort_buffer_size=64K&server.read_buffer_size=256K&server.read_rnd_buffer_size=257K&server.net_buffer_length=2K&server.thread_stack=128K -#db.url.build=jdbc:mysql:mxj://localhost:13306/${db.name}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true&server.basedir=${db.location}${db.config.build} -#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://${db.host}:${db.port}/${db.name} -# To run LAMS using embedded MySQL server, use properties below -#db.url.run=jdbc:mysql:mxj://localhost:13306/${db.name} - #======== END DATABASE PROPERTIES =========