--Umgebung
$ asadmin create-jvm-options -Djava.io.tmpdir=/c/tmp
remote failure: JVM option /tmp is invalid because it does not start with a '-'
Command create-jvm-options failed.
Jeder kann die Ursache sofort erkennen, aber ich wusste nicht, wie ich es in der aktuellen Umgebung schreiben sollte, und habe es versucht.
#Windows-ähnlich, mit Escape-Zeichen und ohne Box>Nicht gut
$ asadmin create-jvm-options -Djava.io.tmpdir=C\:\\tmp\\
remote failure: Escape at EOL
Escape at EOL
Usage: create-jvm-options
[--target <target(default:server)>]
[--profiler[=<profiler(default:false)>]]
[--min-jvm=<version>]
[--max-jvm=<version>]
[-?|--help[=<help(default:false)>]]
(jvm_option_name[=jvm_option_value])[:jvm_option_name[=jvm_option_name]]*
Command create-jvm-options failed.
#Es gibt ein Kästchen mit Escapezeichen im Windows-Stil>Ich hab es geschafft
$ asadmin create-jvm-options -Djava.io.tmpdir='C\:\\tmp\\'
Created 1 option(s)
Command create-jvm-options executed successfully.
#Ich werde überprüfen
$ asadmin list-jvm-options | grep tmpdir
-Djava.io.tmpdir=C:\tmp\
Recommended Posts