WAS v8.5 > Script the application serving environment (wsadmin) > Use properties files to manage system configuration > Manage specific configuration objects using properties filesWork with server properties files
We can use properties files to change server properties.
Determine the changes to make to your server configuration or its configuration objects.
Start the wsadmin scripting tool. To start wsadmin using the Jython language, run the wsadmin -lang jython command from the bin directory of the server profile. Using a properties file, we can create, modify, or delete a server object and its configuration properties.
Run administrative commands using wsadmin to create or change a properties file for a server, validate the properties, and apply them to your configuration.
Actions for server properties files. We can create, modify, and delete server properties.
Action Procedure create
- Run the createPropertiesFileTemplates command to create a server template.
- Edit the template create sections and set SKIP=false.
- Run the applyConfigProperties command.
modify Follow create and delete steps. delete
- Run the createPropertiesFileTemplates command to create a server template.
- Edit the template delete sections and set SKIP=false.
- Run the deleteConfigProperties command.
Optionally, we can use interactive mode with the commands:
AdminTask.command_name('-interactive')
- Run the createPropertiesFileTemplates command to create a server template.
- Open the properties file in an editor.
- To create server properties, edit the template create sections, set SKIP=false, and run the applyConfigProperties command.
Running the applyConfigProperties command applies the properties file to the configuration. In this Jython example, the optional -reportFileName parameter produces a report named report.txt:
AdminTask.applyConfigProperties(['-propertiesFileName myObjectType.props -reportFileName report.txt'])
- To delete server properties, edit the template delete sections, set SKIP=false, and run the deleteConfigProperties command.
AdminTask.deleteConfigProperties('[-propertiesFileName myObjectType.props -reportFileName report.txt]')
Save the changes to your configuration.
Subtopics
- Work with application server properties files
We can use properties files to create or change application server properties and the associated StateManageable instance under a server.- Work with custom service properties files
We can use properties files to create or change custom service properties under a server.- Work with dynamic cache properties files
We can use properties files to change dynamic cache properties under a server.- Work with end point properties file
We can use properties files to change the end points of a server.- Work with EJB container properties files
We can use properties files to change EJB container properties and associated stateManagement, cacheSettings and timerSettings attributes under a server.- Work with HTTP transport properties files
We can use properties files to create or change HTTP transport properties.- Work with listener port properties files
We can use properties files to create or change Message Listener Service listener port properties under a server and associated StateManageable objects.- Work with Object Request Broker properties files
We can use properties files to change Object Request Broker (ORB) properties and associated interceptors, plug-ins, properties and thread pool attributes under a server.- Work with PMI service properties files
We can use properties files to create or change Performance Monitoring Infrastructure (PMI) service properties under a server.- Work with process definition properties files
We can use properties files to change the Java process definition of a server and the associated process execution, logs, monitoring policy, and JVM settings under a server.- Work with SOAP connector properties files
We can use properties files to create or change SOAP connector properties.- Modify the errorStreamRedirect attribute of StreamRedirect properties files
We can use properties files to change errorStreamRedirect attribute of a server. The errorStreamRedirect attribute is of type StreamRedirect.- Work with thread pool properties files
We can use properties files to create or change Message Listener Service thread pool properties under a server.- Work with trace service properties files
We can use properties files to create or change trace service properties and the associated trace.log under a server.- Work with transaction service properties files
We can use properties files to change transaction service properties under a server.- Work with web container properties files
We can use properties files to change web container properties and associated stateManagement and threadPool attributes under a server.
Related
Extracting properties files using wsadmin.sh
Create server, cluster, application, or authorization group objects using properties files and wsadmin scripting
Delete server, cluster, application, or authorization group objects using properties files
Extracting properties files to troubleshoot the environment using wsadmin.sh
Manage servers and nodes with scripting
Reference:
PropertiesBasedConfiguration command group for AdminTask using wsadmin.sh