Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2025.2

...

Table of Contents
maxLevel23

Deploying the SOAVirt Server in Kubernetes Manually

...

No Format
nopaneltrue
/usr/local/parasoft/soavirt/logs
/usr/local/parasoft/soavirt/temp
/usr/local/parasoft/soavirt/webapps/ROOT/WEB-INF/configs/builtin
/usr/local/parasoft/soavirt/webapps/ROOT/felix-cache
/usr/local/parasoft/soavirt/webapps/ROOT/apifiles
/usr/local/parasoft/soavirt/work/Catalina/localhost/ROOT
/usr/local/tomcat/logs/ 

Modifying the java.security File

You may want to use a modified java.security file if, for example, you want to enable or disable an SSL cipher suite or something similar. To do so, create a copy of your java.security file and save it in your parasoft directory (for example, in /usr/local/parasoft/) and make your modifications to that file. Remember to add it to your configuration map.

There are a few options you will want to keep in mind when employing your changes:

  1. When using your modified java.security settings, it's important to disable the global properties. If you don't, they will override your modifications:
    -Djava.security.disableSystemPropertiesFile=true
  2. When overriding the default security file, specify that the security properties should use your modified file explicitly:
    -Djava.security.properties==/usr/local/parasoft/java.security
    Note the double equal sign (==) that tells Java to entirely replace the java.security settings that would normally be loaded from the jvm.
  3. To enable debugging of what java.security properties were loaded, add the java.security.debug property:
    -Djava.security.debug=properties

Put all together, you would run the following:

Code Block
--env JAVA_OPTS="-Djava.security.disableSystemPropertiesFile=true -Djava.security.properties==/usr/local/parasoft/java.security -Djava.security.debug=properties"

Deploying SOAVirt Server in Kubernetes with a Helm Chart

...