Use PASMAN to configure an instance
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
When you run pasman.[bat|sh]
config with no parameters, it displays the core configuration
properties of the Tomcat server including the
appserver.properties,
jvm.properties, and catalina.properties
located in the instance-name/conf
directory.Note: You can only view jvm.properties. You cannot modify its contents with the
pasman config action.To change property values, perform the following steps:
- Run the proenv utility.
- Enter the
pasman configcommand to display the properties of your instance:pasman.[bat|sh] config -I instance-nameThe command lists all the properties of your instance.
- Enter a specific property name to see the value of a
property. For
example:
pasman.[bat|sh] config psc.as.http.port -I instance-nameThe command returns the current value of the HTTP port for the specified instance.
- Update the value of the property using the following
syntax:
pasman.[bat|sh] config psc.as.http.port=6543 -I instance-name - Run the
pasman configcommand on the property again to ensure it has updated:pasman.[bat|sh] config psc.as.http.port -I instance-name - To add a new property and value pair to the
appserver.propertiesfile, use the following syntax:pasman.[bat|sh] config +my.example.dir=/home/example -I instance-name - To remove a property and value pair from the
appserver.propertiesfile, use the following syntax:pasman.{bat|sh} config ~my.example.dir -I instance-name
Note: All property names are case
sensitive.