Use the crsctl status serverpool
command to obtain the status and configuration information of one or more particular server pools.
crsctl status serverpool [server_pool_name [...] | -w "filter"] [-p | -v | -f] crsctl status serverpool {[server_pool_name [...]} -g
Table E-69 crsctl status serverpool Command Parameters
Parameter | Description |
---|---|
[server_pool_name [...] -g |
Specify one or more space-delimited server pool names to identify specific server pools.
Note: You cannot use the |
[-w "filter"] |
Use this parameter to specify a filter, such as See Also: "Filters" for more information |
[-p | -v | -f] |
You can optionally specify one of the following parameters:
|
The server_pool_name
parameter or a filter is required
Do not use this command for any server pools with names that begin with ora because these server pools are Oracle server pools
While you can use this command in either environment, it is only useful in the Oracle RAC environment
Example 1
To display the full configuration of the server pool sp1
:
$ crsctl status serverpool sp1 -f NAME=spl IMPORTANCE=1 MIN_SIZE=0 MAX_SIZE=-1 SERVER_NAMES=node3 node4 node5 PARENT_POOLS=Generic EXCLUSIVE_POOLS= ACL=owner:oracle:rwx,pgrp:oinstall:rwx,other::r-- SERVER_CATEGORY=ora.hub.category ACTIVE_SERVERS=node3 node4
Example 2
To display all the server pools and the servers associated with them, use the following command:
$ crsctl status serverpool NAME=Free ACTIVE_SERVERS= NAME=Generic ACTIVE_SERVERS=node1 node2 NAME=ora.orcl ACTIVE_SERVERS=node1 node2 NAME=sp1 ACTIVE_SERVERS=node3 node4
Example 3
To find a server pool that meets certain criteria, use the following command:
$ crsctl status serverpool -w "MAX_SIZE > 1" NAME=sp2 ACTIVE_SERVERS=node3 node4