+

Search Tips   |   Advanced Search

Configure new connection pools using wsadmin

Use wsadmin scripting tool to configure new connection pools.

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

Perform the following steps:

  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 wsadmin.sh for more information.

  4. In a network deployment environment only, synchronize the node. See the topic Synchronizing nodes with wsadmin.sh for more information.


Related tasks

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

  • Commands for the AdminConfig object