I use this command to get the Grizzly server running:
java -Xmx6G -jar otp-0.19.0-shaded.jar --build Data --inMemory
and it successfuly runs the Grizzly server on 8080. But because I have want to now use it on a machine that has 8080 occupied I need to run it on e.g. 9090.
when i try:
java -Xmx6G -jar otp-0.19.0-shaded.jar -p 9090 --build Data --inMemory
Which is suggested in numerous places in the web I will get an error that claims that "-p" is an unsupported command. Any ideas on how I should proceed with this?