+

Search Tips   |   Advanced Search

Disable parallel startup

We can use scripting to disable parallel startup of servers.

Before starting this task, wsadmin.sh must be running. See the topic about starting the wsadmin scripting client for more information.

To disable parallel startup:

  1. 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/']

  2. Enable development mode. For example:

    • Jacl:

        $AdminConfig modify $server "{parallelStartEnabled false}"

    • Jython:

        AdminConfig.modify(server, [['parallelStartEnabled', 'false']])

  3. Save the configuration changes. See the topic about saving configuration changes with wsadmin.sh for more information.

  4. In a network deployment environment only, synchronize the node. See the topic about synchronizing nodes using wsdmin.sh for more information.


Related tasks

  • Use the wsadmin scripting AdminConfig object for scripted administration
  • Start the wsadmin scripting client
  • Saving configuration changes with wsadmin.sh
  • Synchronize nodes using wsdmin.sh

  • Commands for the AdminConfig object