|
|
asadmin> create-jvm-options --user admin --password adminadmin
--host fuyako --port 7070 --instance server1 --profiler=false
-- "-DDebug=true":"-Xmx256m":"-Dcom.sun.aas.imqBin"="\/export\/as7se\/imq\/bin"
JVM options created
|
Where the JVM options are created. The double dash (--)
is used between --profiler options and the operand because -
indicated the end of the options and the following text is the operand. The
double dash (--) is necessary here since there are single dashes (i.e., --DDebug)
in the operand. To distinguish between the options and the operand, the double
dash (--) is used.
|