4

私が見つけた唯一の関連するコマンドは次のとおりです。

NAMElist-jdbc-connection-pools-すべてのJDBC接続プールを一覧表示します

例この例では、既存のJDBC接続プールを一覧表示します。

   asadmin> list-jdbc-connection-pools
   sample_derby_pool
   __TimerPool
   Command list-jdbc-connection-pools executed successfully.

私が欲しいのは、特定の接続プールに関する情報を表示することです。そのような:

asadmin desc-jdbc-connection-pool sample_derby_pool

名前:sample_derby_pool
databaseName:oracle
portNumber:1521
serverName:test
user:testUser
.. ..

4

1 に答える 1

7

実行してみてください:

asadmin get * | もっと

上記のコマンドは、すべてのGlassFish属性を表示します。それをgrepにパイプして、関心のあるプールプロパティだけを取得します。

asadmin get * | grep TimerPool

お役に立てれば。

于 2012-01-13T09:04:14.007 に答える