You are right, that “Access denied for user ‘test’@‘localhost’” seems to be a spurious error.
Summarizing our IRC exchange for anyone interested:
- you need to increase the Java memory settings to run the whole reference application
- you cannot do this in the mvn openmrs-sdk:run command, but you can do it by setting the MAVEN_OPTS environment variable.
So, I am now successfully able to set up for Reference Application development just by doing:
$ docker run --name openmrs-mysql -e MYSQL_ROOT_PASSWORD=openmrs -d -p 3306:3306 mysql:5.6
$ mvn openmrs-sdk:setup -DserverId=openmrs -Dversion=2.3 -DdbDriver=mysql -DdbUser=root -DdbPassword=openmrs -DdbUri=jdbc:mysql://192.168.99.100:3306/openmrs?autoReconnect=true&sessionVariables=storage_engine=InnoDB&useUnicode=true&characterEncoding=UTF-8
$ export MAVEN_OPTS="-Xmx1024m -Xms1024m -XX:PermSize=256m -XX:MaxPermSize=512m"
$ mvn openmrs-sdk:run -DserverId=openmrs