Reputation: 49
Can somebody please let me know how do I set a JVM parameter in linux?
I need to set this one:
"-Dsun.security.ssl.allowUnsafeRenegotiation=true"
Thanks!
Upvotes: 3
Views: 884
Reputation: 36703
Just at the beginning of the java line.
java -Dsun.security.ssl.allowUnsafeRenegotiation=true -cp foo.jar:bar.jar arg1 arg2
Upvotes: 2