I just created a new server, and I really like the wizard! Unfortunately it didn’t actually work for me. (More details later.)
First, a couple random comments:
There seem to be a lot of heavy dependencies (downloading over our TW office network in India), especially the Atlassian ones seem to be big.
I disagree with the “platform” options that are offered as shortcuts:
You can deploy the following versions of a platform:
- 2.1.0-SNAPSHOT
- 2.0.1-SNAPSHOT
- 2.0.0
- 1.12.1-SNAPSHOT
- 1.12.0-beta
- 1.11.7-SNAPSHOT
- Other…
(1) I prefer that we only have shortcuts for released versions, not any snapshots (or at most we can show the very latest snapshot)
(2) We should show the latest maintenance version of each release line
(3) 1.12.0 should be shown, not 1.12.0-beta
So I suggest we show (assuming we stick with 6, plus Other):
- 2.1.0-SNAPSHOT
- 2.0.0
- 1.12.0
- 1.11.6
- 1.10.4
- 1.9.11
The workflow seems to be what I intended. Small suggestions is that in this workflow the dbUri default value could default to jdbc:mysql://{docker machine IP}:3306/@DBNAME@
Also, it failed at the end. Here’s the flow:
NAdjazayer:~ djazayer$ mvn openmrs-sdk:setup
Java HotSpot™ 64-Bit Server VM warning: ignoring option MaxPermSize=1024m; support was removed in 8.0
[INFO] Scanning for projects…
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] — openmrs-sdk-maven-plugin:3.1.2:setup (default-cli) @ standalone-pom —
Would you be willing to help us improve SDK by sending us once in a while anonymous usage statistics (you can always change your mind by going to sdk-stats.properties and setting statsEnabled to false) [Y/n]:
Setting up a new server…
Specify server id (-DserverId) (default: ‘server’): cohortbuilder
You can setup the following servers:
- Distribution
- Platform
Which one do you choose? [1/2]: 2
You can deploy the following versions of a platform:
- 2.1.0-SNAPSHOT
- 2.0.1-SNAPSHOT
- 2.0.0
- 1.12.1-SNAPSHOT
- 1.12.0-beta
- 1.11.7-SNAPSHOT
- Other…
Which one do you choose? [1/2/3/4/5/6/7]: 7
Please specify platform version: 1.12.0
[INFO] Configured Artifact: org.openmrs.web:openmrs-webapp:1.12.0:war
[INFO] Copying openmrs-webapp-1.12.0.war to /Users/djazayer/openmrs/cohortbuilder/openmrs-1.12.0.war
Which database would you like to use?:
- H2
- MySQL 5.6 (requires pre-installed MySQL 5.6)
- MySQL 5.6 in SDK docker container (requires pre-installed Docker)
- Existing docker container (requires pre-installed Docker)
Which one do you choose? [1/2/3/4]: 4
Please specify Docker Machine URL (find out by running docker-machine url
): tcp://192.168.99.100:2376
Please specify your container id/name/label (you can get it using command docker ps -a
): openmrs-sdk-mysql
Please specify DB username: root
Please specify DB password: openmrs
Please specify database uri (-DdbUri) (default: ‘jdbc:mysql://localhost:3306/@DBNAME@’): jdbc:mysql://192.168.99.100:3306/openmrs
Starting ‘openmrs-sdk-mysql’ DB docker container…
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 03:23 min
[INFO] Finished at: 2016-08-06T11:41:19+05:30
[INFO] Final Memory: 35M/280M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.openmrs.maven.plugins:openmrs-sdk-maven-plugin:3.1.2:setup (default-cli) on project standalone-pom: Unable to execute mojo: Failed to find the ‘openmrs-sdk-mysql’ container. Run docker ps
to see available containers. → [Help 1]
Doing docker start openmrs-sdk-mysql
at the command line works, so I know that container exists. (This is the container’s name. I haven’t tried specifying by container ID.)
Also, another bug related to this failure mode: at this point, the SDK has created a folder for my SDK and downloaded the OpenMRS WAR file into it, but nothing else, so the SDK doesn’t recognize it as a server, and I can’t delete it, or view its info, or anything:
NAdjazayer:~ djazayer$ mvn openmrs-sdk:delete -DserverId=cohortbuilder
…
[ERROR] Failed to execute goal org.openmrs.maven.plugins:openmrs-sdk-maven-plugin:3.1.2:delete (default-cli) on project standalone-pom: There is no server properties file in this directory → [Help 1]
I would expect that the properties file should have been written, since I provided all the info. Then I could try changing one property and running it again, in case I had just gotten the docker container name wrong or something.