+

Search Tips   |   Advanced Search

Disable parallel startup using scripting

Use scripting to disable parallel startup of servers.

Perform the following steps to disable parallel startup:


Tasks

  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.

  4. 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