|
|
asadmin> delete-jvm-options --user admin --password adminadmin
--host fuyako --port 7070 --instance server1 --profiler=true
-- "-DDebug=true":"-Xmx256m":"-Dcom.sun.aas.imqBin"="\/export\/as7se\/imq\/bin"
JVM options deleted
|
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.
|