Disable parallel startup using scripting
Use scripting to disable parallel startup of servers.
Perform the following steps to disable parallel startup:
Tasks
- Locate the server object. The following example selects the first server found:
- Jacl:
set server[$AdminConfig getid /Server:server1/]- Jython:
server = AdminConfig.getid('/Server:server1/']
- Enable development mode. For example:
- Jacl:
$AdminConfig modify $server "{parallelStartEnabled false}"- Jython:
AdminConfig.modify(server, [['parallelStartEnabled', 'false']])
- Save the configuration changes.
- In a network deployment environment only, synchronize the node.
wsadmin AdminConfig Start the wsadmin scripting client Save wsadmin configuration changes Synchronize nodes Commands for the AdminConfig object