+

Search Tips   |   Advanced Search

Configure new connection pools using wsadmin

Use wsadmin scripting tool to configure new connection pools.

See the topic about starting the wsadmin scripting client for more information.

Perform the following steps:


Tasks

  1. Identify the parent ID:

    • Jacl:

      set newds [$AdminConfig getid /Cell:mycell/Node:mynode/JDBCProvider:JDBC1/DataSource:DS1/]
      
    • Jython:

      newds = AdminConfig.getid('/Cell:mycell/Node:mynode/JDBCProvider:JDBC1/DataSource:DS1/')
      

    Example output:

    DS1(cells/mycell/nodes/mynode|resources.xml$DataSource_1)
    

  2. Create connection pool:

    • Jacl:

      $AdminConfig create ConnectionPool $newds {}
      
    • Jython:

      print AdminConfig.create('ConnectionPool', newds, [])
      

    Example output:

    (cells/mycell/nodes/mynode|resources.xml#ConnectionPool_1)
    

  3. Save the configuration changes. See the topic Saving configuration changes with the wsadmin tool for more information.
  4. In a network deployment environment only, synchronize the node. See the topic Synchronize nodes with the wsadmin tool for more information.

  • wsadmin AdminConfig
  • Synchronize nodes
  • Start the wsadmin scripting client
  • Save wsadmin configuration changes
  • Commands for the AdminConfig object