question history:
question 
53 views

Command line script to run on the ug machine

Hello,

Has anyone made an effort to automate the running the ecs and server system using maybe command line scripts? Would you like to maybe share how you write your scripts or where you find the resource? I'm trying to look for script that can start multiple java instances at the same time, but I didn't find any. Thank you for any help.

 0
Updated by Anonymous Calc

the students' answer,

where students collectively construct a single answer
java -jar m2-ecs.jar -p 8081 &
java -jar m2-server.jar -b 127.0.0.1:8081 -p 8082 -d kv1 &
java -jar m2-server.jar -b 127.0.0.1:8081 -p 8083 -d kv2 &

Something like this should work

 1
Updated by Anonymous Poet
followup discussionsfor lingering questions and comments