Use the Server Control Utility (SRVCTL) to manage Oracle Real Application Clusters (Oracle RAC) configuration information.
SRVCTL is installed on each node in a cluster by default. To use SRVCTL, log in to the operating system of a node and enter the SRVCTL command and its parameters in case-sensitive syntax.
Only use the version of SRVCTL that is provided with Oracle Database 12c on Oracle RAC databases that are created for or upgraded to Oracle Database 12c. The version of SRVCTL must be the same as the version of the object (listeners, Oracle ASM instances, Oracle RAC databases and their instances, and services) being managed. To ensure the versions are the same release, run SRVCTL commands from the Oracle home of the database or object you are managing.
SRVCTL does not support concurrent executions of commands on the same object. Therefore, run only one SRVCTL command at a time for each database, service, or other object.
When specifying a comma-delimited list as part of a SRVCTL command, there should not be any spaces between the items in the list. For example:
srvctl add database -serverpool "serverpool1,serverpool3"
When you specify a comma-delimited list in a Windows environment, you must enclose the list in double quotation marks (""
). You can enclose a comma-delimited list in double quotation marks in a Linux or UNIX environment but they will be ignored.
If you are entering a SRVCTL command, and you want to continue the input on a new line, then you can use the operating system continuation character. In Linux, this is the backslash (\) symbol.
A SRVCTL command that produces no output is a successful command. Not all SRVCTL commands return a message when it completes, successfully. However, if a SRVCTL command fails, then it always returns an error message.
You can use the -eval
parameter with several SRVCTL commands. This parameter, when you use it, enables you to simulate running a command without making any changes to the system. SRVCTL returns output that informs you what will happen if you run a particular command. For example, to know what might happen if you relocate a server:
$ srvctl relocate server –servers "rac1" –eval –serverpool pool2 Database db1 will stop on node rac1 will start on node rac7 Service mySrv1 will stop on node rac1, it will not run on any node Service myServ2 will stop on node rac1 will start on node rac6 Server rac1 will be moved from pool myPoolX to pool pool2
The -eval
parameter is available with the following commands:
srvctl add database
srvctl add service
srvctl add srvpool
srvctl modify database
srvctl modify service
srvctl modify srvpool
srvctl relocate server
srvctl relocate service
srvctl remove srvpool
srvctl start database
srvctl start service
srvctl stop database
srvctl stop service
Before Oracle Database 12c, the SRVCTL command-line interface used single letter parameters. However, this imposes a limit on the number of unique parameters available for use with SRVCTL commands. SRVCTL command parameters introduced in Oracle Database 12c are full words instead of single letters, such as -multicastport
and -subdomain
.
To support backward compatibility, you can use a mix of single-letter parameters and new keyword parameters. New parameters introduced with keywords can be used with single letter parameters.
Note:
Starting with Oracle Database 12c, the single letter parameters are deprecated in favor of the keyword parameters to avoid using the same letter to implement different functionality depending on the command.
You can obtain the single-letter equivalents, where applicable, by adding the -compatible
parameter after the -help
parameter.
SRVCTL interacts with many different types of objects. The character set and name length limitations, and whether the object name is case sensitive, can vary between object types.
Table A-1 String Restrictions for SRVCTL Object Names
Object Type | Character Set Limitations | Case Sensitive? | Maximum Length |
---|---|---|---|
db_domain |
Alpha-numeric characters, underscore (_), and number sign (#) |
128 characters |
|
db_unique_name |
Alpha-numeric characters, underscore (_), number sign (#), and dollar sign ($); the first 8 characters must be unique because those characters are used to form instance names for policy-managed databases |
No |
30 characters but the first 8 characters must be unique relative to any other database in the same cluster |
diskgroup_name |
Naming disk groups have the same limitations as naming other database objects. See Also: Oracle Database SQL Language Reference for more information about database object naming rules |
No (all names are converted to uppercase) |
|
instance_name |
Alpha-numeric characters |
Depends on the platform |
15 characters |
listener_name |
|||
node_name |
No |
||
scan_name |
The first character must be an alphabetic character |
No |
|
server_pool |
Alpha-numeric characters, underscore (_), number sign (#), period (.), and dollar sign ($); the name cannot begin with a period, contain single quotation marks ( |
250 characters |
|
service_name |
250 characters |
||
volume_name |
Alphanumeric characters; dashes (-) are not allowed and the first character must be an alphabetic character. |
No |
11 characters |
Use SRVCTL to manage databases, instances, cluster databases, cluster database instances, Oracle ASM instances and disk groups, services, listeners, or other clusterware resources.
Cluster Database Configuration Tasks
Tasks | Commands |
---|---|
Add, modify, and delete cluster database configuration information |
|
Add an instance to or delete an instance from the configuration of a cluster database |
|
Add a service to or delete a service from the configuration of a cluster database |
|
Move instances and services in a cluster database configuration and modify service configurations |
|
Set and unset the environment for an instance or service in a cluster database configuration |
|
Set and unset the environment for an entire cluster database in a cluster database configuration |
|
General Cluster Database Administration Tasks
Tasks | Commands |
---|---|
Start and stop cluster databases |
|
Start and stop cluster database instances |
|
Start, stop, and relocate cluster database services |
|
Obtain statuses of cluster databases, cluster database instances, or cluster database services |
|
Node-Level Tasks
Tasks | Commands |
---|---|
Administering VIPs |
|
Administering node applications |
|
Related Topics
This section includes information about using context sensitive help with SRVCTL.
To see help for all SRVCTL commands, from the command line enter:
srvctl -help
To see the command syntax and a list of parameters for each SRVCTL command, from the command line enter:
srvctl command (or verb) object (or noun) -help
When you request online help for a command using -help
, SRVCTL prints the full words for each parameter. You can obtain the single-letter equivalents, where applicable, by adding the -compatible
parameter after the -help
parameter. For example:
$ srvctl config database -help -compatible
The preceding command prints usage information for the srvctl config database
command, listing all parameters as full words followed by their single-letter equivalents in parentheses, where applicable.
To see the SRVCTL version number enter:
$ srvctl -version
To use SRVCTL to change your Oracle RAC database configuration, log in to the operating system as the software owner of the home that you want to manage.
For example, if different users installed Oracle Database and the Oracle Grid Infrastructure, then log in as the database software owner (for example, ora_db
) to manage databases and log in as the Oracle Grid Infrastructure software owner (for example, ora_asm
) to manage the Oracle ASM instances.
Users who are members of the OSDBA operating system group can start and stop the database. To stop and start an Oracle ASM instance, you must be a member of the OSASM operating system group.
To create or register objects such as listeners, Oracle Notification Services, and services, you must be logged in to the operating system as the software owner of the Oracle home. The objects you create or register for that Oracle home will run under the user account of the owner of the Oracle home. Databases run as the database installation owner of the home from which they run.
To perform srvctl add
operations on any object, you must be logged in as the Oracle account owner of the home on which the object runs.
For some SRVCTL commands, on Linux and UNIX systems, you must be logged in as root
, and on Windows systems, you must be logged in as a user with Administrator privileges to run them. In this appendix, those commands are preceded by the root prompt (#) in the command examples.
Use SRVCTL to manage Oracle-supplied resources such as listener, instances, disk groups, and networks, and CRSCTL for managing Oracle Clusterware and its resources.
Note:
Oracle strongly discourages directly manipulating Oracle-supplied resources (resources whose names begin with ora) using CRSCTL. This could adversely impact the cluster configuration.
Although you may be able to cancel running SRVCTL commands by pressing the Control-C keys, you may corrupt your configuration data by doing this.
You are strongly advised not to attempt to terminate SRVCTL in this manner.
A number of SRVCTL commands and parameters have been deprecated in this release.
Single-character parameters have been deprecated in Oracle Database 12c.
Use the full keyword for each parameter instead. To support older tools and scripts that still use single-character parameters, the current version of SRVCTL supports both single-character parameters and full keyword parameters.
The command reference in this appendix shows the keywords for each SRVCTL command. Table A-2 lists the deprecated single-character parameters.
Table A-2 Deprecated Single-Character Parameters for SRVCTL Commands
Single Letter | Long Form | Values | Description | Related Commands |
---|---|---|---|---|
A |
address |
{VIP_name | IP}/netmask/ [if1[|if2...]] |
VIP address specification for node applications |
Node applications, VIP, network, Listener, SCAN VIP, and SCAN listener commands |
a |
all |
|
All resources of that kind |
Common |
a |
diskgroup |
diskgroup_list |
Comma-delimited list of Oracle ASM disk groups |
Database, instance, Oracle ASM, disk group, and file system commands |
a |
detail |
|
Print detailed configuration information |
Common |
a |
available |
available_list |
A comma-delimited list of available instances |
Service and server pool commands |
a |
abort |
Abort failed online relocation |
Relocate database |
|
a |
viponly |
|
Display VIP configuration |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
B |
rlbgoal |
{NONE| SERVICE_TIME| THROUGHPUT} |
The runtime load balancing goal of a service |
Service and server pool commands |
c |
currentnode |
current_node |
Node name from which to relocate the service |
Service and server pool commands |
c |
cardinality |
{UNIFORM| SINGLETON} |
Whether the service should run on every active server in the server pool (UNIFORM) or just one server (SINGLETON) |
Service and server pool commands |
c |
dbtype |
type |
Type of database: Oracle RAC One Node, Oracle RAC, or single instance |
Database, instance, Oracle ASM, disk group, and file system commands |
d |
db or database |
db_unique_name |
Database unique name |
Common |
d |
device |
volume_device |
Volume device path |
Database, instance, Oracle ASM, disk group, and file system commands |
d |
domain |
|
Display subdomain served by GNS |
OC4J, home, CVU, and GNS commands |
e |
emport |
em_port_number |
Local listen port for Oracle Enterprise Manager |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
e |
failovertype |
{NONE|SESSION BASIC|TRANSACTION} |
The failover type for a service |
Service and server pool commands |
e |
server |
server_list |
Candidate server list for Oracle RAC One Node database |
Database, instance, Oracle ASM, disk group, and file system commands |
f |
force |
Force remove |
Common |
|
g |
diskgroup |
diskgroup_name |
Disk group name |
File system, Diskgroup commands |
g |
gsdonly |
Display GSD configuration |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
|
g |
serverpool |
server_pool_name server_pool_list |
A server pool name Comma-delimited list of database server pool names |
Service and server pool commands Database, instance, Oracle ASM, disk group, and file system commands |
h |
help |
Common |
||
i |
importance |
number |
A number that represents the importance of the server pool |
Service and server pool commands |
i |
instance |
instance_name instance_list |
Instance name prefix for administrator-managed Oracle RAC One Node database A comma-delimited list of instance names |
Database, instance, Oracle ASM, disk group, and file system commands |
I |
ip |
ip_address |
VIP address on which GNS is to listen |
OC4J, home, CVU, and GNS commands |
i |
oldinst |
instance_name |
The old instance name |
Service and server pool commands |
i |
scannumber |
scan_ordinal _number |
Ordinal number of the IP address for the SCAN |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
i |
vip |
vip_name or "vip_name_list" |
VIP names |
Node applications, GNS, VIP, network, listener, SCAN VIP, and SCAN listener commands |
j |
acfspath |
acfs_path_list |
Comma-delimited list of Oracle ACFS paths where the dependency on the database will be set |
Database, instance, Oracle ASM, disk group, and file system commands |
j |
clbgoal |
{SHORT|LONG} |
The connection load balancing goal for a service |
Service and server pool commands |
k |
netnum |
network_number |
The network number |
Service and server pool commands Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands OC4J, home, CVU, and GNS commands |
l |
list |
|
List all records in GNS |
OC4J, home, CVU, and GNS commands |
l |
listener |
|
The name of a listener |
ASM commands |
l |
loglevel |
log_level |
Specify the level (0-6) of logging that GNS should run with |
OC4J, home, CVU, and GNS commands |
l |
min |
number |
The minimum size of the server pool |
Service and server pool commands |
l |
onslocalport |
port_number |
Oracle Notification Service listening port for local client connections |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
l |
role |
service_role |
Comma-delimited list of server roles within double quotation marks ( |
Service and server pool commands |
m |
domain |
domain_name |
The domain for the database |
Database, instance, Oracle ASM, disk group, and file system commands |
|
failovermethod |
{NONE|BASIC} |
The failover method of a service |
Service and server pool commands |
m |
multicastpost |
|
The port on which the GNS daemon is listening for multicast requests |
OC4J, home, CVU, and GNS commands |
m |
path |
mountpoint_path |
Mountpoint path |
Database, instance, Oracle ASM, disk group, and file system commands |
n |
name |
|
Advertise a name through GNS using the given address |
OC4J, home, CVU, and GNS commands |
n |
node |
node_name |
The name of a specific node |
Common |
n |
nodes |
node_list |
A comma-delimited list of node names |
File system commands |
n |
dbname |
database_name |
The database name (DB_NAME), if different from the unique name specified by the |
Database, instance, Oracle ASM, disk group, and file system commands |
n |
scanname |
scan_name |
Fully-qualified SCAN name (includes the domain) |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
n |
servers |
server_list |
A comma-delimited list of candidate server names |
Service and server pool commands |
n |
targetnode |
node_name |
Node name to which to relocate the service |
Service and server pool commands |
o |
oraclehome |
oracle_home |
|
Database commands |
p |
endpoints |
[TCP:]port _number[/IPC: key][/NMP:pipe _name][/TCPS: s_port][/SDP: port] |
SCAN listener endpoints |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
p |
port |
|
The port which the GNS daemon uses to communicate with the DNS server |
OC4J, home, CVU, and GNS commands |
p |
rmiport |
port_number |
OC4J RMI port number |
OC4J, home, CVU, and GNS commands |
P |
tafpolicy |
{NONE|BASIC} |
TAF policy specification |
Service and server pool commands |
p |
spfile |
spfile_location |
Server parameter file path |
Database, instance, Oracle ASM, disk group, and file system commands |
q |
notification |
{TRUE|FALSE} |
Whether FAN is enabled for OCI connections |
Service commands |
q |
query |
|
Query GNS for the records belonging to a name |
OC4J, home, CVU, and GNS commands |
r |
preferred |
preferred_list |
A comma-delimited list of preferred instances |
Service and server pool commands |
r |
onsremoteport |
port_number |
Oracle Notification Service listening port for connections from remote hosts |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
r |
relocate |
|
Relocate the VIP |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
r |
revert |
Remove target node of failed online relocation request from the candidate server list of administrator-managed Oracle RAC One Node database |
Relocate database |
|
r |
role |
role_type |
Role of the standby database: |
Database, instance, Oracle ASM, disk group, and file system commands |
s |
onsonly |
|
Display Oracle Notification Service daemon configuration |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
s |
skip |
Skip checking the ports |
Listener, SCAN, and SCAN listener. |
|
s |
statfile |
file_name |
The file path of the |
OC4J, home, CVU, and GNS commands |
s |
status |
|
Display the status of GNS |
OC4J, home, CVU, and GNS commands |
S |
subnet |
subnet/net _mask/[if1[| if2...]] |
Network address specification for a network |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
s |
service |
service_name service_name_list |
The name of a service A comma-delimited list of service names |
Service and server pool commands |
s |
startoption |
start_options |
Startup options for the database (mount, open, read only) |
Database, instance, Oracle ASM, disk group, and file system commands |
t |
checkinterval |
time_interval |
Interval in minutes between checks |
OC4J, home, CVU, and GNS commands |
t |
edition |
edition_name |
The initial session edition of a service |
Service and server pool commands |
t |
envs |
"name_list" |
A list of environment variables |
Common |
t |
namevals |
"name= value,..." |
Names and values of environment variables |
Common |
T |
nameval |
"name=value" |
Name and value of a single environment variable |
Common |
t |
update |
instance_name |
The new instance name |
Service and server pool commands |
t |
remoteservers |
host_name[: port_number] [,host_name[: port_number]...] |
List of remote host name and port number pairs for Oracle Notification Service daemons outside this cluster |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
t |
stopoption |
stop_options |
Stop options for the database ( |
Database, instance, Oracle ASM, disk group, and file system commands |
t |
toversion |
target_version |
Version to which you are downgrading |
Database, instance, Oracle ASM, disk group, and file system commands |
u |
max |
number |
Maximum size of the server pool |
Service and server pool commands |
u |
nettype |
network_type |
The network server type, which can be |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
u |
newinst |
Add a new instance to the service configuration |
Service commands |
|
u |
update |
|
Update SCAN listeners to match the number of SCAN VIPs |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
u |
user |
oracle_user |
Oracle user or other authorized user to mount and unmount file systems |
Database, instance, Oracle ASM, disk group, and file system commands |
v |
verbose |
|
Verbose output |
Common |
v |
volume |
volume_name |
Name of a volume |
Database, instance, Oracle ASM, disk group, and file system commands |
V |
versions |
|
|
Common |
w |
failoverdelay |
number |
Failover delay |
Service and server pool commands |
w |
nettype |
network_type |
The network server type, which can be |
Node applications, VIP, network, listener, SCAN VIP, and SCAN listener commands |
w |
timeout |
timeout |
Online relocation timeout in minutes |
Database, instance, Oracle ASM, disk group, and file system commands |
x |
dtp |
{TRUE | FALSE} |
Whether to enable distributed transaction processing |
Service and server pool commands |
x |
node |
node_name |
Node name (use this parameter only with noncluster databases) |
Common |
y |
noprompt |
|
Suppress the confirmation prompt |
Common |
y |
policy |
{AUTOMATIC | MANUAL} |
Management policy for the resource |
Database, instance, Oracle ASM, disk group, file system, service and server pool commands |
z |
failoverretry |
number |
Number of failover retries |
Service and server pool commands |
z |
rmdepondisk |
|
To remove a database's dependency upon disk groups |
Database, instance, Oracle ASM, disk group, and file system commands |
The following command parameters have been deprecated in this release:
Table A-3 Deprecated Commands and Parameters for SRVCTL
Command | Deprecated Parameters |
---|---|
srvctl modify asm |
|
srvctl modify instance |
Instead, use the |
srvctl modify gns |
Use the |
srvctl * oc4j |
The |
srvctl add service |
The |
srvctl modify service |
The The |
A comprehensive list of SRVCTL commands to use in Oracle RAC environments.
SRVCTL commands, object names, and parameters are case sensitive. Database, instance, listener, and service names are case insensitive and case preserving. You cannot create listener names that differ only in case, such as LISTENER and listener. SRVCTL uses the following command syntax:
srvctl command object [parameters]
In SRVCTL syntax:
command
is a verb such as start
, stop
, or remove
object
(also known as a noun) is the target or object on which SRVCTL performs the command, such as database or instance. You can also use object abbreviations.
parameters
extend the use of a preceding command combination to include additional parameters for the command. For example, the -instances
parameter indicates that a comma-delimited list of preferred instance names follows; the -instance
parameter only permits one value and not a list of names. Do not use spaces between the items in a comma-delimited list.
Note:
If specifying a comma-delimited list in Windows, then you must enclose the list within double quotation marks (""
).
Table A-4 lists the keywords that can be used for the object
portion of SRVCTL commands. You can use either the full name or the abbreviation for each object keyword. The Purpose column describes the object and the actions that can be performed on that object.
Table A-4 Object Keywords and Abbreviations
Object | Keyword | Purpose |
---|---|---|
Database |
database |
To add, modify, manage environment variables for, list the configuration of, enable, disable, start, stop, and obtain the status of databases, and also to upgrade, downgrade, and remove database configuration information about databases. |
Instance |
instance inst |
To add, modify, enable, disable, start, stop, obtain the status of, and remove database instances. |
Listener |
listener lsnr |
To add, modify, manage environment variables for, list the configuration of, enable, disable, start, stop, obtain the status of, and remove listeners |
Network |
network |
To add, modify, list the configuration of, and remove a non-default Network Note: The node applications object, and the |
Node applications |
nodeapps |
To add, modify, manage environment variables for, list the configuration of, enable, disable, start, stop, obtain the status of, and remove node applications |
Oracle Notification Service |
ons |
To add, configure, enable, start, obtain the status of, stop, disable, and remove Oracle Notification Service instances only for Oracle Restart |
Single client access name (SCAN) |
scan |
To add, list the configuration of, modify, enable, disable, start, stop, relocate, obtain the status of, and remove SCAN VIPs |
SCAN listener |
scan_listener |
To add, list the configuration of, modify, enable, disable, start, stop, relocate, obtain the status of, and remove SCAN listeners |
Service |
service |
To add, modify, list the configuration of, enable, disable, start, stop, obtain the status of, relocate, and remove services |
Virtual IP |
vip |
To add, manage environment variables for, list the configuration of, enable, disable, start, stop, obtain the status of, and remove a VIP |
Adds a database configuration to Oracle Clusterware.
Syntax
srvctl add database -db db_unique_name [-eval] -oraclehome oracle_home [-node node_name] [-domain domain_name] [-spfile spfile] [-pwfile password_file_path] [-dbtype {RACONENODE | RAC | SINGLE} [-server "server_list"]] [-instance instance_name] [-timeout timeout]] [-role {PRIMARY | PHYSICAL_STANDBY | LOGICAL_STANDBY | SNAPSHOT_STANDBY"] [-startoption start_options] [-stopoption stop_options] [-dbname db_name] [-acfspath "acfs_path_list"] [-policy {AUTOMATIC | MANUAL | NORESTART}] [-serverpool "server_pool_list" [-pqpool "pq_pool_list"]] [-diskgroup "disk_group_list"] [-css_critical {yes | no}] [-cpucount cpu_count] [-memorytarget memory_target] [-maxmemory max_memory] [-cpucap cpu_cap] [-defaultnetnum network_number] [-verbose]
Parameters
Table A-5 srvctl add database Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name of the database. |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. Note: You can only use this parameter with a policy-managed database. |
-oraclehome oracle_home |
Specify the path for the Oracle database home directory. |
-node node_name |
Specify the node name on which you want to register a noncluster, or single instance, Oracle database. Note: This parameter can be used only with Oracle Clusterware and can be used with the |
-domain db_domain |
Specify the domain for the database. Note: You must use this parameter if you set the |
-spfile spfile |
Specify the path name of the database server parameter file. |
-pwfile password_file_path |
Enter the full path to the location of the password file. |
-dbtype {RACONENODE | RAC | SINGLE} |
Specify the type of database you are adding: Oracle RAC One Node, Oracle RAC, or single instance. The default is |
-server server_list |
List candidate servers for Oracle RAC One Node databases. Note: You can use this parameter only with administrator-managed Oracle RAC One Node databases. If your Oracle RAC One Node database is policy managed, then you cannot use this parameter. |
-instance instance_name |
Specify the instance name prefix for Oracle RAC One Node databases. The default value for this parameter is the first 12 characters of the global unique name of the database. Note: You can use this parameter only with administrator-managed Oracle RAC One Node databases. If your Oracle RAC One Node database is policy managed, then you cannot use this parameter. |
-timeout timeout |
Specify the online database relocation timeout, in minutes, for Oracle RAC One Node databases. The default is |
-role {PRIMARY | PHYSICAL_STANDBY | LOGICAL_STANDBY | SNAPSHOT_STANDBY} |
Specify the role of the database in an Oracle Data Guard configuration. The default is |
-startoption start_options |
Startup options for the database, such as Notes:
|
-stoption stop_options |
Specify stop options for the database, such as |
-dbname db_name |
Specify the name of the database, if it is different from the unique name given by the |
-acfspath "acfs_path_list" |
A single Oracle ACFS path or a comma-delimited list of Oracle ACFS paths enclosed in double quotation marks ( Use this parameter to create dependencies on Oracle ACFS file systems other than |
-policy {AUTOMATIC | MANUAL | NORESTART} |
Specify the management policy for the database.
|
-serverpool "server_pool_name" [-pqpool "pq_pool_name"] |
Specify the name of a server pool used to control database placement. If you do not specify this parameter, then it defaults to the Generic server pool. You can optionally also specify the name of a parallel query server pool to be used by the database. Notes:
|
-diskgroup "disk_group_list" |
Specify a comma-delimited list of Oracle ASM disk groups if database uses Oracle ASM storage. |
-css_critical {YES | NO} |
You can add weight to a service by setting this parameter to Note: You can use this parameter only on an administrator-managed node. Should the node become policy managed, at some point, this parameter will no longer apply. |
-cpucount cpu_count |
Specify the number of CPUs. The default value is 0. |
-memorytarget memory_target |
Specify the target memory, in MB, to be allocated for the database. The default is 0. |
-maxmemory max_memory |
Specify the maximum memory, in MB, to be allocated for the resource. If you specify |
-cpucap cpu_cap |
Specify a percentage from 1 to 100 that is the maximum utilization of the workload CPUs the database requires. The default is 0. |
-defaultnetnum network_number |
Specify a network number (an integer) to which services will default in the event you do not specify a network number when you add the service. The number must match the value of the |
Examples
An example of this command to add a policy-managed Oracle RAC database is:
$ srvctl add database -db crm -oraclehome /u01/oracle/product/12c/mydb -domain example.com -spfile +diskgroup1/crm/spfilecrm.ora -role PHYSICAL_STANDBY -startoption MOUNT -dbtype RAC -dbname crm_psd -policy MANUAL -serverpool "svrpool1,svrpool2" -diskgroup "dgrp1,dgrp2"
An example of this command to add an administrator-managed database is:
$ srvctl add database -db crm -oraclehome /u01/oracle/product/12c/mydb -domain example.com
Displays the configuration for an Oracle RAC database or lists all configured databases that are registered with Oracle Clusterware.
Syntax
srvctl config database [-db db_unique_name] [-all] [-verbose]
Parameters
Table A-6 srvctl config database Command Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database. If you do not specify this parameter, then the utility displays the configuration of all database resources. |
-all |
Print detailed configuration information. |
-verbose |
Display verbose output. |
Example
This command returns output similar to the following:
$ srvctl config database -d main4
Database unique name: main
Database name:
Oracle home: /ade/mjkeenan_main4/oracle
Oracle user: mjkeenan
Spfile:
Password file:
Domain:
Start options: open
Stop options: immediate
Database role: PRIMARY
Management policy: AUTOMATIC
Server pools:
Disk Groups:
Mount point paths:
Services: test
Type: RAC
Start concurrency:
Stop concurrency:
OSDBA group: dba
OSOPER group: oper
Database instances: main41,main42
Configured nodes: mjkeenan_main4_0,mjkeenan_main4_1
CSS critical: no
CPU count: 0
Memory target : 0
Maximum memory: 0
CPU cap: 0
Database is administrator managed
Syntax
Use this command with one of the following syntax models:
srvctl convert database -db db_unique_name -dbtype RACONENODE [-instance instance_name] [-timeout timeout] srvctl convert database -db db_unique_name -dbtype RAC [-node node_name]
Parameters
Table A-7 srvctl convert database Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name for the database. Note: If you specify a noncluster database, then command returns an error instructing you to use |
-dbtype RACONENODE | RAC |
Specify the type of database to which you are converting, either Oracle RAC One Node or Oracle RAC. Note: If there is an ongoing or failed online database relocation, then the command returns an error instructing you to first complete or abort the online database relocation and then rerun the command. |
-instance instance_name |
Optionally, you can specify an instance name prefix for Oracle RAC One Node databases. The default value for this parameter is the first 12 characters of the global unique name of the database. Notes:
|
-timeout timeout |
Optionally, you can specify online database relocation timeout, in minutes, for Oracle RAC One Node databases. The default is |
-node node_name |
Optionally, you can specify the name of the node for an administrator-managed Oracle RAC database. The default is the first candidate. Note: If you do not specify a node name or you specify a node name where the database is not running, then the command returns an error instructing you specify the correct node. |
Example
$ srvctl convert database -db myDB -dbtype RACONENODE -instance myDB3
Disables a database. If the database is a cluster database, then its instances are also disabled.
Use the srvctl disable database
command with the following syntax:
srvctl disable database -db db_unique_name [-node node_name]
Table A-8 srvctl disable database Parameters
Parameter | Description |
---|---|
-db database_name
|
Database name |
-node node_name
|
Disables the database from running on the named node. Note: This parameter can be used only with Oracle Clusterware. |
Disables a specific disk group on a number of specified nodes.
Use the srvctl disable diskgroup
command with the following syntax:
srvctl disable diskgroup -diskgroup diskgroup_name [-node "node_list"]
Table A-9 srvctl disable diskgroup Parameters
Parameter | Description |
---|---|
-diskgroup diskgroup_name
|
The Oracle ASM disk group name. |
-node "node_list"
|
Comma-delimited list of node names on which to disable the disk group This parameter is only available with Oracle Clusterware. |
Adds a configuration for an instance to your cluster database configuration.
You can only use this command for administrator-managed databases. If you have a policy-managed database, then use the srvctl modify srvpool
command to add an instance to increase either the maximum size, minimum size, or both, of the server pool used by the database.
Syntax
srvctl add instance -db db_unique_name -instance instance_name -node node_name [-force]
Parameters
Table A-10 srvctl add instance Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
The unique name of the database you are adding the instance to |
-instance instance_name |
The name of the instance you are adding |
-node node_name |
The name of the node on which you are creating the instance |
-force |
Optionally, you can force the add operation, even though some resources will be stopped. |
Usage Notes
This command increments the CARDINALITY
resource attribute.
This command is only available with Oracle Clusterware and Oracle RAC.
If you attempt to use this command on an Oracle RAC One Node database, then the command returns an error stating you must convert the database to Oracle RAC.
Examples
Examples of this command are:
$ srvctl add instance -db crm -instance crm01 -node gm01 $ srvctl add instance -db crm -instance crm02 -node gm02 $ srvctl add instance -db crm -instance crm03 -node gm03
Disables an instance. If the instance that you disable with this command is the last enabled instance, then this operation also disables the database.
Note:
This command is only available with Oracle Clusterware and Oracle RAC.
If you run this command on an Oracle RAC One Node database, then the command returns an error instructing you to use the database
noun, instead.
Use the srvctl disable instance
command with the following syntax:
srvctl disable instance -db db_unique_name -instance instance_name_list
Table A-11 srvctl disable instance Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-instance instance_name_list
|
Comma-delimited list of instance names |
Adds a listener to every node in a cluster.
Syntax
Use this command with one of the following syntax models.
To create an Oracle Database listener:
srvctl add listener [-listener listener_name] [-netnum network_number] [-oraclehome Oracle_home] -user user_name [-endpoints "[TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key][/NMP:pipe_name] [/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]" [-group group_name]] [-invitednodes "node_list"] [-invitedsubnets "subnet_list"] [-skip]
To create an Oracle ASM listener:
srvctl add listener [-listener listener_name] -asmlistener [-subnet subnet] [-endpoints "[TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key][/NMP:pipe_name] [/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]" [-group group_name]] [-invitednodes "node_list"] [-invitedsubnets "subnet_list"] [-skip]
To create a Leaf listener:
srvctl add listener [-listener listener_name] -leaflistener [-subnet subnet] [-endpoints "[TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key][/NMP:pipe_name] [/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]" [-group group_name]] [-invitednodes "node_list"] [-invitedsubnets "subnet_list"] [-skip]
To create a SCAN listener, use the srvctl add scan_listener
command.
Parameters
Table A-12 srvctl add listener Command Parameters
Parameter | Description |
---|---|
-listener listener_name |
Specify a listener name. This parameter is optional. If you do not specify this parameter, then the name of the listener defaults to |
-netnum network_number |
The optional network number from which VIPs are obtained. If not specified, the VIPs are obtained from the same default network from which the Note: Use this parameter when you add an Oracle Database listener. |
-oraclehome oracle_home |
Specify an Oracle home for the cluster database. If you do not include this parameter, then SRVCTL uses the Grid home by default. Note: Use this parameter when you add an Oracle Database listener. |
-user user_name |
Use this parameter to set the user that will run the listener to a less privileged user. Oracle recommends using this parameter to increase security. Notes:
|
-endpoints "[TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key] [/NMP:pipe_name][/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]"] |
Protocol specifications for the listener. Use If you do not specify the You can also specify endpoints for TCPS, SDP, and EXADIRECT ports. Note: You can modify this attribute using Online Resource Attribute Modification. |
-group group_name |
Optionally, you can use the |
-invitednodes "node_list" |
Specify a comma-delimited list of node names allowed to register with the listener. |
-invitedsubnets "subnet_list" |
Specify a comma-delimited list of subnets allowed to register with the listener. |
-skip |
Indicates you want to skip the checking of ports. |
-asmlistener |
Specifies the listener type as an Oracle ASM listener. If you do not specify the Note: You can only use this parameter with Oracle Clusterware. |
-leaflistener |
Specifies the listener type is a Leaf Node listener. If you do not specify the Note: You can only use this parameter with Oracle Clusterware. |
-subnet subnet |
Specifies the subnet to use for an Oracle ASM or Leaf Node listener. Note: You can only use this parameter with Oracle Clusterware. |
Usage Notes
You must run this command as root
user on Linux and UNIX platforms when you specify the -user
parameter.
Example
The following command adds a listener named listener112
that is listening on ports 1341, 1342, and 1345 and runs from the Oracle home directory on every node in the cluster:
$ srvctl add listener -listener listener112 -endpoints "1341,1342,1345" -oraclehome /u01/app/oracle/product/12.2.0/db1
Disables a listener resource.
Use the srvctl disable listener
command with the following syntax:
srvctl disable listener [-listener listener_name] [-node node_name]
Table A-13 srvctl disable listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Name of a listener resource. If you do not specify this parameter, the name of the listener defaults to |
-node node_name
|
Name of a cluster node on which the listener you want to disable is running. This parameter is only available with Oracle Clusterware. |
Displays configuration information of a specific listener that is registered with Oracle Clusterware.
Syntax
srvctl config listener [-listener listener_name | -asmlistener | -leaflistener]
[-all]
Parameters
Table A-14 srvctl config listener Command Parameters
Parameter | Description |
---|---|
-listener listener_name | -asmlistener | -leaflistener |
The name of a specific listener name or the type of listener (Oracle ASM or Leaf Node). If you do not specify this parameter, then SRVCTL displays the configuration for the default database listener. |
-all |
Print detailed configuration information. |
Example
This command returns output similar to the following:
Name: LISTENER_LEAF Subnet: 10.100.200.195 Type: type Owner: scott Home: Grid_home End points: TCP:1521
Adds a static or dynamic network.
If your server connects to more than one network, then you can use this command to configure an additional network interface for Oracle RAC, allowing you to create VIPs on multiple public networks.
Syntax
srvctl add network [-netnum net_number] -subnet subnet/netmask[/if1[|if2|...]] [-nettype {static | dhcp | autoconfig | mixed}] [-leaf] [-pingtarget "ping_target_list"] [-verbose]
Parameters
Table A-15 srvctl add network Command Parameters
Parameter | Description |
---|---|
-netnum net_number |
Specify a network number. The default is 1. |
-subnet subnet/netmask [/if1[|if2|...]] |
Defines a subnet. If you do not specify any interface names, then the network uses any interface on the given subnet. For IPv6, |
-nettype {static|dhcp|autoconfig|mixed} |
Specify the network type: If you specify If you specify If you specify If you specify |
-leaf |
Specify the |
[-pingtarget "ping_target_list"] |
Specify a comma-delimited list of IP addresses or host names to ping. |
-verbose |
Verbose output. |
Usage Notes
On Linux and UNIX systems, you must be logged in as root
and on Windows, you must be logged in as a user with Administrator privileges to run this command.
This command is only available with Oracle Clusterware.
Oracle only supports DHCP-assigned networks for the default network, not for subsequent networks.
You can also use the LISTENER_NETWORKS
database initialization parameter to control client redirects to the appropriate network.
Example
An example of this command is:
# srvctl add network -netnum 3 -subnet 192.168.3.0/255.255.255.0
Displays the network configuration for the cluster.
Syntax
srvctl config network [-netnum network_number]
Usage Notes
Specify the network for which you want to display configuration information.
This command is only available with Oracle Clusterware.
Example
An example of this command is:
$ srvctl config network -netnum 2
Adds a node application configuration to the specified node.
Syntax
Use this command with one the following syntax models, specifying either a specific node and VIP or a specific subnet and netmask:
srvctl add nodeapps {-node node_name -address {vip_name | ip_address}/netmask[/if1[|if2|..]] [-skip]} [-emport em_port] [-onslocalport ons_local_port] [-onsremoteport ons_remote_port] [-onshostport hostname_port_list] [-remoteservers hostname_port_list [-verbose]
srvctl add nodeapps -subnet subnet/netmask[/if1[|if2|...]] [-emport em_port] [-onslocalport ons_local_port] [-onsremoteport ons_remote_port] [-onshostport hostname_port_list] [-remoteservers hostname_port_list] [-verbose]
Parameters
Table A-16 srvctl add nodeapps Command Parameters
Parameter | Description |
---|---|
-node node_name |
The name of the node on which you want to create the node application. Node name is optional and unnecessary if you run the command on the local node. |
-address {vip_name | ip_address}/netmask[/if1[|if2|..]]} |
This specification creates a traditional VIP node application on the specified node. Note: You must use this parameter for upgrade configurations and new, non-DHCP configurations. |
-skip |
Specify this parameter to skip checking the reachability of the VIP address. |
-subnet subnet/netmask [/if1[|if2 |...]] |
Creates a DHCP subnet. If you do not specify any interface names, then the VIPs use any interface on the given subnet. |
-emport em_port |
Local port on which Oracle Enterprise Manager listens. The default port is 2016. |
-onslocalport ons_local_port |
The Oracle Notification Service daemon listener port on its node. If you do not specify this value, the Oracle Notification Service daemon listener port defaults to 6100. Note: The local port and remote port must each be unique. |
-onsremoteport ons_remote_port |
The port number for remote Oracle Notification Service daemon connections. If you do not specify a port number, the default value of 6200 is used for the Oracle Notification Service remote port. Note: The local port and remote port must each be unique. |
-onshostport host_port_list |
A list of Note: If |
-remoteservers host_port_list |
A list of |
-verbose |
Verbose output |
Usage Notes
On Linux and UNIX systems, you must be logged in as root
and on Windows, you must be logged in as a user with Administrator privileges to run this command.
This command is only available with Oracle Clusterware.
Example
An example of this command is:
# srvctl add nodeapps -node crmnode1 -address 1.2.3.4/255.255.255.0
Displays the VIP configuration for each node in the cluster.
Note:
This command is only available with Oracle Clusterware.
Syntax
srvctl config nodeapps [-viponly] [-onsonly]
Usage Notes
Use -viponly
to display the VIP address configuration. Use -onsonly
to display the Oracle Notification Service configuration.
Example
An example of this command is:
$ srvctl config nodeapps -viponly -onsonly
Disables node applications on all nodes in the cluster.
Note:
This command is only available with Oracle Clusterware.
Adds an Oracle Notification Service daemon to an Oracle Restart configuration.
Syntax
srvctl add ons [-l ons_local_port] [-r ons_remote_port] [-t host[:port][,host[:port]][...]] [-v]
Parameters
Table A-18 srvctl add ons Command Parameters
Parameter | Description |
---|---|
-l ons_local_port |
The Oracle Notification Service daemon listening port for local client connections Note: The local port and remote port must each be unique. |
-r ons_remote_port |
The Oracle Notification Service daemon listening port for connections from remote hosts Note: The local port and remote port must each be unique. |
-t host[:port] [,host[:port]][...] |
A list of comma-delimited Note: If |
-v |
Verbose output |
Usage Notes
This command is only available with Oracle Restart.
Example
An example of this command is:
$ srvctl add ons -l 6200
Displays configuration information for the Oracle Notification Service daemon.
Note:
This command is only available with Oracle Restart.
srvctl config ons
This command has no parameters.
Displays configuration information for the qosmserver
resource.
Note:
This command is only available with Oracle Clusterware.Syntax
srvctl config qosmserver
Parameters
This command has no parameters.
Example
The following command displays the configuration information for the qosmserver
resource.
$ srvctl config qosmserver
Adds Oracle Clusterware resources for the given SCAN.
Syntax
srvctl add scan -scanname scan_name [-netnum network_number]
Parameters
Table A-19 srvctl add scan Command Parameters
Parameter | Description |
---|---|
-scanname scan_name |
A fully-qualified host name, which includes the domain name. If the network is dynamic, then you do not have to use fully-qualified host name but, if you choose to do so, then the domain must be the GNS subdomain. Note: You can modify this attribute using Online Resource Attribute Modification. |
-netnum network_number |
The optional network number from which SCAN VIPs are obtained. If you do not specify this parameter, then the SCAN VIPs are obtained from the same default network from which the |
Usage Notes
This command creates the same number of SCAN VIP resources as the number of IP addresses that SCAN resolves to, or 3 when network_number
identifies a dynamic network and Oracle GNS configuration.
For static networks, the addresses to which the SCAN resolves in DNS must match the address type of the subnet.
For an IPv4 network, the SCAN must resolve to IPv4 addresses.
This command is only available with Oracle Clusterware.
Example
An example of this command is:
# srvctl add scan -scanname scan.mycluster.example.com
Displays the configuration information for all SCAN VIPs, by default, or a specific SCAN VIP identified by ordinal_number.
Syntax
srvctl config scan [[-netnum network_number] [-scannumber ordinal_number] | -all]
Parameters
Table A-20 srvctl config scan Command Parameters
Parameter | Description |
---|---|
-netnum network_number |
Use this parameter to view the configuration of a specific SCAN VIP. |
-scannumber ordinal_number |
Use this parameter to specify any one of the three SCAN VIPs, using values from 1 to 3, for which you want to view the configuration. |
-all |
Alternative to specifying network or ordinal numbers, you can use this parameter to view the configuration for all of the SCAN VIPs. |
Usage Notes
This command is only available with Oracle Clusterware.
Example
This command returns output similar to the following:
$ srvctl config scan -scannumber 1 SCAN name: mjk12700890090-r, Network: 1 Subnet IPv4: 198.51.100.1/203.0.113.46/eth0, static Subnet IPv6: SCAN 1 IPv4 VIP: 198.51.100.195 SCAN VIP is enabled. SCAN VIP is individually enabled on nodes: SCAN VIP is individually disabled on nodes:
Disables all SCAN VIPs, by default, or a specific SCAN VIP identified by ordinal_number
.
Note:
This command is only available with Oracle Clusterware.
Adds Oracle Clusterware resources for the SCAN listeners.
Syntax
srvctl add scan_listener [-listener lsnr_name_prefix] [-skip] [-netnum network_number] [-endpoints "[TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key][/NMP:pipe_name] [/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]" [-invitednodes node_list] [-invitedsubnets subnet_list]
Parameters
Table A-21 srvctl add scan_listener Command Parameters
Parameter | Description |
---|---|
-listener lsnr_name_prefix |
The SCAN listener name prefix. |
-skip |
Use this parameter to skip checking of the ports. |
-netnum network_number |
The optional network number from which SCAN VIPs are obtained. If you do not specify this parameter, then the SCAN VIPs are obtained from the same default network from which the |
-endpoints "[TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key] [/NMP:pipe_name][/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]"] |
Protocol specifications for the SCAN listener. Use You can also specify endpoints for TCPS, SDP, and EXADIRECT ports. Note: You can modify this attribute using Online Resource Attribute Modification. |
-invitednodes node_list |
Use this parameter to specify a comma-delimited list of host names from outside the cluster that are allowed to register with the SCAN listener. |
-invitedsubnets subnet_list |
Use this parameter to specify a comma-delimited list of subnets from outside the cluster that are allowed to register with the SCAN listener. |
Usage Notes
The number of SCAN listener resources created is the same as the number of SCAN VIP resources.
This command is only available with Oracle Clusterware.
Example
An example of this command is:
# srvctl add scan_listener -listener myscanlistener
Displays the configuration information for all SCAN listeners, by default, or a specific listener identified by network number or ordinal_number.
Syntax
srvctl config scan_listener [[-netnum network_number] [-scannumber ordinal_number] | -all]
Parameters
Table A-22 srvctl config scan_listener Command Parameters
Parameter | Description |
---|---|
-netnum network_number |
Use this parameter to view the configuration of the listener for a specific SCAN VIP. |
-scannumber ordinal_number |
Use this parameter to specify any one of the three SCAN VIPs, using values from 1 to 3, for which you want to view the configuration of the listener. |
–all |
Alternative to specifying network or ordinal numbers, you can use this parameter to view the configuration of the listeners for all of the SCAN VIPs. |
Usage Notes
This command is only available with Oracle Clusterware.
Example
This command returns output similar to the following:
$ srvctl config scan_listener -scannumber 1 SCAN Listener LISTENER_SCAN1 exists. Port: TCP:1529 Registration invited nodes: Registration invited subnets: SCAN Listener is enabled. SCAN Listener is individually enabled on nodes: SCAN Listener is individually disabled on nodes:
Disables all SCAN listeners, by default, or a specific listener identified by ordinal_number
.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl disable scan_listener
command with the following syntax:
srvctl disable scan_listener [-scannumber ordinal_number]
The only parameter available for this command is -scannumber
ordinal_number
, which identifies any one of the three SCAN listeners, and can take a range of values from 1 to 3.
Adds services to a database and assigns them to instances.
Syntax
Use this command with one of the following syntax models.
To add a service to a policy-managed database:
srvctl add service -db db_unique_name -service service_name [-eval] -serverpool server_pool [-pdb pluggable_database] [-cardinality {UNIFORM | SINGLETON}] [-edition edition_name] [-netnum network_number] [-role "[PRIMARY][,PHYSICAL_STANDBY][,LOGICAL_STANDBY][,SNAPSHOT_STANDBY]"] [-policy {AUTOMATIC | MANUAL}] [-notification {TRUE | FALSE}] [-rfpool pool_name] [-clbgoal {SHORT | LONG}] [-failovertype {NONE|SESSION|SELECT|TRANSACTION}] [-rlbgoal {NONE | SERVICE_TIME | THROUGHPUT}] [-dtp {TRUE | FALSE}] [-failovermethod {NONE | BASIC}] [-failoverretry failover_retries] [-drain_timeout timeout] [-stopoption {NONE|IMMEDIATE|TRANSACTIONAL}] [-failoverrestore {NONE|LEVEL1}] [-failoverdelay failover_delay] [-gsmflags gsm_flags] [-sql_translation_profile sql_translation_profile] [-global {TRUE | FALSE}] [-maxlag max_lag_time] [-commit_outcome {TRUE|FALSE}] [-retention retention_time] [-replay_init_time replay_initiation_time] [-session_state {STATIC | DYNAMIC}] [-pqservice pq_service] [-pqpool pq_pool] [-css_critical {yes | no}] [-force]
To add a service to an administrator-managed database:
srvctl add service -database db_unique_name -service service_name [-pdb pluggable_database] [-eval] [-preferred preferred_list] [-available available_list] [-netnum network_number] [-tafpolicy {BASIC | NONE}] [-edition edition_name] [-role "[PRIMARY][,PHYSICAL_STANDBY][,LOGICAL_STANDBY][,SNAPSHOT_STANDBY]" [-policy {AUTOMATIC | MANUAL}] [-notification {TRUE | FALSE}] [-clbgoal {SHORT | LONG}] [-failovertype {NONE|SESSION|SELECT|TRANSACTION}] [-rlbgoal {NONE | SERVICE_TIME | THROUGHPUT}] [-dtp {TRUE | FALSE}] [-failovermethod {NONE | BASIC}] [-failoverretry failover_retries] [-drain_timeout timeout] [-stopoption {NONE|IMMEDIATE|TRANSACTIONAL}] [-failoverrestore {NONE|LEVEL1}] [-failoverdelay failover_delay] [-sql_translation_profile sql_translation_profile] [-global {TRUE | FALSE}] [-maxlag max_lag_time] [-commit_outcome {TRUE|FALSE}] [-retention retention_time] [-replay_init_time replay_initiation_time] [-session_state {STATIC|DYNAMIC}] [-force] [-verbose]
To update the preferred and available lists of an existing service:
srvctl add service -db db_unique_name -service service_name -update {-prefered preferred_list | -available available_list} [-force] [-verbose]
Parameters
The following table lists and describes all the srvctl add service
parameters and whether they can be used when adding a service to either an Oracle RAC database or noncluster database.
Table A-23 srvctl add service Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Unique name for the database. |
-service service_name |
The Note: The |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. Note: You can only use this parameter with a policy-managed service. |
-edition edition_name |
The initial session edition of the service. When an edition is specified for a service, all subsequent connections that specify the service use this edition as the initial session edition. However, if a session connection specifies a different edition, then the edition specified in the session connection is used for the initial session edition. SRVCTL does not validate the specified edition name. During connection, the connect user must have |
-sql_translation_profile profile_name |
Use this parameter to specify a SQL translation profile for a service that you are adding after you have migrated applications from a non-Oracle database to an Oracle database. This parameter corresponds to the SQL translation profile parameter in the Notes:
|
-preferred preferred_list |
A list of preferred instances on which the service runs when the database is administrator managed. The list of preferred instances must be mutually exclusive with the list of available instances. Note: This parameter can be used only with Oracle RAC and only for administrator-managed databases. |
-available available_list |
A list of available instances to which the service fails over when the database is administrator managed. The list of available instances must be mutually exclusive with the list of preferred instances. Note: This parameter can be used only with Oracle RAC and only for administrator-managed databases. |
-serverpool server_pool |
The name of a server pool used when the database is policy managed. Note: This parameter can be used only with Oracle RAC and only for policy-managed databases. |
-cardinality {UNIFORM | SINGLETON} |
The cardinality of the service, either Notes:
|
-netnum network_number |
Use this parameter to determine on which network this service is offered. The service is configured to depend on VIPs from the specified network. Notes:
|
-tafpolicy {BASIC | NONE} |
TAF policy specification (for administrator-managed databases only). |
-role "[PRIMARY][,PHYSICAL_STANDBY] [,LOGICAL_STANDBY][,SNAPSHOT_STANDBY]" |
The service role. You can specify one or more roles in a comma-delimited list. Use this option to indicate that the service should only be automatically started upon database open when the Oracle Data Guard database role matches one of the specified service roles. Using SRVCTL to manually start a service is not affected by the service role. Note: The |
-policy {AUTOMATIC | MANUAL} |
Service management policy. If If Note: Using CRSCTL to stop and start the Oracle Clusterware restarts the service in the same way that a failure does. |
-notification {TRUE | FALSE} |
Enable Fast Application Notification (FAN) for OCI connections. |
-rfpool pool_name |
Specify the name of the reader farm server pool. |
-dtp {TRUE | FALSE} |
Indicates whether Distributed Transaction Processing should be enabled for this service. This service will either be a singleton service in a policy-managed database or a preferred service on a single node in an administrator-managed database. Note: This parameter can be used only with Oracle RAC. |
-clbgoal {SHORT | LONG} |
Connection Load Balancing Goal. Use a value of |
-rlbgoal {NONE | SERVICE_TIME | THROUGHPUT} |
Runtime Load Balancing Goal (for the Load Balancing Advisory). Set this parameter to |
-failovertype {NONE | SESSION | SELECT | TRANSACTION} |
Failover type. To enable Application Continuity for Java, set this parameter to Note: If you set |
-failovermethod {NONE | BASIC} |
TAF failover method (for backward compatibility only). If the failover type ( Note: This parameter can be used only with Oracle RAC. |
-failoverretry failover_retries |
For Application Continuity and TAF, this parameter determines the number of attempts to connect after an incident. |
-drain_timeout timeout |
Specify the time, in seconds, allowed for resource draining to be completed. Accepted values are an empty string (""), 0, or any positive integer. The default value is an empty string, which means that this parameter is not set. If it is set to 0, then draining occurs, immediately. The draining period is intended for planned maintenance operations. During the draining period, all current client requests are processed, but new requests are not accepted. When set on the service this value is used when the command line value is not set. |
-stopoption {NONE|IMMEDIATE|TRANSACTIONAL} |
Specify the mode in which the service is stopped. When set on the service, this value is used if you do not set the value on the command line.
If you specify The default is taken from the service setting, when specified on the service. Otherwise the default is Note: You must use the |
-failoverrestore {NONE|LEVEL1} |
For Application Continuity, when you set the For OCI applications using TAF or Application Continuity, setting |
-failoverdelay failover_delay |
For Application Continuity and TAF, this parameter specifies the time delay (in seconds) between reconnect attempts per incident at failover. |
-gsmflags gsm_flags |
Set locality and region failover values. |
-pdb pluggable_database |
The name of the pluggable database (PDB). Note: You can specify a PDB property when you create or modify a service. The PDB property associates the service with the specified PDB. You can view the PDB property for a service by querying the ALL_SERVICES data dictionary view or, when using the SRVCTL utility, by running the When you create or modify a service with the specified PDB, SRVCTL does not check if the PDB exists. Before running this command, you must ensure that the PDB exists. |
-global {TRUE | FALSE} |
Indicates whether this is a Global Data Services service. Note: This parameter can only be used with Global Data Services. |
-maxlag maximum_lag_time |
Maximum replication lag time in seconds. Must be a non-negative integer. The default value is |
-commit_outcome {TRUE | FALSE} |
Enable Transaction Guard; when set to |
-retention retention_time |
If |
-replay_init_time replay_initialization_time |
For Application Continuity, this parameter specifies the difference between the time, in seconds, of original execution of the first operation of a request and the time that the replay is ready to start after a successful reconnect. Application Continuity will not replay after the specified amount of time has passed. This parameter is intended to avoid the unintentional execution of a transaction when a system is recovered after a long period. The default is 5 minutes ( |
-session_state {STATIC | DYNAMIC} |
For Application Continuity, this parameter specifies whether the session state that is not transactional is changed by the application. Oracle recommends a setting of Note: This parameter is considered only if |
-pqservice pq_service |
Specify a parallel query service name. |
-pqpool pq_pool |
Specify a parallel query server pool. |
-update { |
Add a new preferred or available instance to the service configuration. |
-css_critical {yes | no} |
You can add weight to a service by setting this parameter to Note: You can use this parameter only on an administrator-managed node. Should the node become policy managed, at some point, this parameter will no longer apply. |
-verbose |
Display verbose output. |
-force |
Force the add operation even though a listener is not configured for a network. |
Usage Notes
This command does not accept placement parameters for Oracle RAC One Node databases.
Examples
Use this example syntax to add the gl.example.com
service to the my_rac
database with Fast Application Notification enabled for OCI connections, a failover method of BASIC
, a Connection Load Balancing Goal of LONG
, a failover type of SELECT
, and 180 failover retries with a failover delay of 5 seconds:
$ srvctl add service -db my_rac -service gl.example.com -notification TRUE -failovermethod BASIC -failovertype SELECT -failoverretry 180 -failoverdelay 5 -clbgoal LONG
Use this example syntax to add a named service to a database with preferred instances and available instances and enabled for TAF:
$ srvctl add service -db crm -service sales -preferred crm01,crm02 -available crm03 -tafpolicy BASIC
Displays the configuration for a service.
Syntax
srvctl config service {-db db_unique_name [-service service_name] | -serverpool pool_name [-db db_unique_name]} [-verbose]
Parameters
Table A-24 srvctl config service Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Unique name for the database. |
-service service_name |
Optionally, you can specify the name of a service. If you do not use this parameter, then SRVCTL displays the configuration information for all services configured for the database. |
-serverpool pool_name |
Alternatively, you can use this parameter to specify the name of a server pool for which you want to view the service configuration. Optionally, you can also specify a particular database on which the server pool resides. |
-verbose |
Displays verbose output. |
Usage Notes
The srvctl config service
command shows exactly the string value you specified for the edition using the srvctl add | modify service
commands. If you specified the edition in upper case, then srvctl config service
displays upper case. If it is surrounded by double quotation marks (""
), then the command displays the double quotation marks. Otherwise, the command displays an empty string.
Examples
This command returns information similar to the following for a policy-managed database:
$ srvctl config service -db crm -service webapps
Service name: webapps
Service is enabled
Server pool: sales
Cardinality: SINGLETON
Disconnect: false
Service role: PRIMARY
Management policy: AUTOMATIC
DTP transaction: false
AQ HA notifications: false
Failover type: NONE
Failover method: NONE
TAF failover retries: 0
TAF failover delay: 0
Connection Load Balancing Goal: LONG
Runtime Load Balancing Goal: NONE
TAF policy specification: NONE
Service is enabled on nodes:
Service is disabled on nodes:
Edition: "my Edition"
This command returns information similar to the following for a administrator-managed database:
$ srvctl config service -db crm -service webapps
Service name: webapps
Service is enabled
Server pool: sales
Cardinality: 1
Disconnect: false
Service role: PRIMARY
Management policy: AUTOMATIC
DTP transaction: false
AQ HA notifications: false
Failover type: NONE
Failover method: NONE
TAF failover retries: 0
TAF failover delay: 0
Connection Load Balancing Goal: LONG
Runtime Load Balancing Goal: NONE
TAF policy specification: NONE
Preferred instances: crm_1
Available instances:
Edition: "my Edition"
Service configuration for administrator-managed Oracle RAC One Node databases displays the one instance as preferred.
Disables a service. Disabling an entire service affects all of the instances, disabling each one. When the entire service is already disabled, a srvctl disable service
operation on the entire service affects all of the instances and disables them; it just returns an error. This means that you cannot always use the entire set of service operations to manipulate the service indicators for each instance.
Use the srvctl disable service
command with the following syntax:
srvctl disable service -db db_unique_name -servics "service_name_list" [-instance instance_name | -node node_name]
If you do not specify either the -instance
instance_name
or -node
node_name
parameters, then the command disables the service on all nodes.
Table A-25 srvctl disable service Parameters
Parameter | Description |
---|---|
-database db_unique_name
|
Unique name for the database. |
-service "service_name_list"
|
Comma-delimited list of service names, or a single service name |
-instance instance_name
|
The name of the instance for which you want to disable the service. Notes:
|
-node node_name
|
The name of the node on which to disable the service. Notes:
|
The following example globally disables two services for the CRM
database:
$ srvctl disable service -db crm -service "crm,marketing"
The following example disables a service for the CRM
database that is running on the CRM1
instance, resulting in the service still being available for the database, but on one less instance:
$ srvctl disable service -db crm -service crm -instance crm1
Adds a server pool that is configured to host Oracle databases to a cluster.
Syntax
srvctl add srvpool -serverpool server_pool_name [-eval] [-importance importance] [-min min_size] [-max max_size] [-servers "node_list" | -category server_category] [-force] [-verbose]
Parameters
Table A-26 srvctl add srvpool Command Parameters
Parameter | Description |
---|---|
-serverpool server_pool_name |
The name of the server pool. |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. |
-importance importance |
The importance of the server pool (default value is |
-min min_size |
The minimum size of the server pool (default value is |
-max max_size |
The maximum size of the server pool. The default value is |
-servers "node_list" |
A comma-delimited list of candidate node names enclosed in double quotation marks ( Note: In Oracle Database 12c, servers are assigned to server pools according to the value of the |
-category server_category |
The category of servers to use for the server pool, or |
-force |
Add the server pool, even if it requires stopping resources in other server pools. |
-verbose |
Display verbose output. |
Usage Notes
SRVCTL prepends “ora.
” to the name of the server pool.
This command is only available with Oracle Clusterware.
Example
The following command adds a server pool named SP1, with importance set to 1, the minimum number of nodes in the server pool set to 3 and the maximum number of nodes in the server pool set to 7:
srvctl add srvpool -serverpool SP1 -importance 1 -min 3 -max 7
Displays configuration information including name, minimum size, maximum size, importance, and a list of server names, if applicable, for a specific server pool in a cluster.
Syntax
srvctl config srvpool [-serverpool pool_name]
Parameters
The only parameter available for this command is -serverpool pool_name
, which is the name of the server pool for which you want to display the configuration information.
Usage Notes
This command is only available with Oracle Clusterware.
Example
An example of this command is:
$ srvctl config srvpool -serverpool dbpool
Adds a virtual IP address (VIP) to a node.
Syntax
srvctl add vip -node node_name -address {VIP_name|ip}/netmask[/if1[|if2|...]] -netnum network_number [-skip] [-verbose]
Parameters
Table A-27 srvctl add vip Command Parameters
Parameter | Description |
---|---|
-node node_name |
The name of the node on which you are adding the VIP. |
-address {VIP_name|ip}/netmask [/if1[|if2|...]] |
This specification creates a traditional VIP node application on the specified node. You can specify one |
-netnum network_number |
The network number from which VIPs are obtained. The default network number is 1. |
-skip |
Specify this parameter to skip checking the reachability of the VIP address. |
-verbose |
Verbose output |
Note:
Usage Notes
You cannot have multiple VIPs on the same net number (subnet or interface pair) on the same node.
This command is only available with Oracle Clusterware.
Example
An example of this command is:
# srvctl add network -netnum 2 -subnet 192.168.16.0/255.255.255.0 # srvctl add vip -node node7 -address 192.168.16.17/255.255.255.0 -netnum 2
The first command creates a network number, 2
, and the second command adds a VIP to this network. You can specify the network number after the -netnum
parameter in other SRVCTL commands.
Displays all VIPs on all networks in the cluster except for user VIPs.
Syntax
srvctl config vip {-node node_name | -vip vip_name}
Parameters
Table A-28 srvctl config vip Command Parameters
Parameter | Description |
---|---|
-node node_name |
Specify the node name. |
-vip vip_name |
Alternatively, you can specify the VIP name. |
Usage Notes
This command is only available with Oracle Clusterware.
Example
This command returns output similar to the following:
$ srvctl config vip -node crmnode1 VIP exists: ipv4, ipv6, network number 1, hosting node adc2100252
Disables a specific VIP.
Note:
This command is only available with Oracle Clusterware.
Displays the configuration for a specific volume or all volumes.
Syntax
srvctl config volume [-volume volume_name] [-diskgroup disk_group_name] [-device volume_device]
Parameters
Table A-30 srvctl config volume Command Parameters
Parameter | Description |
---|---|
-volume volume_name |
Specify the name of the volume for which you want to view the configuration. |
-diskgroup disk_group_name |
Specify the name of the disk group in which the volume resides for which you want to display the configuration. |
-device volume_device |
Specify the path to the volume device for which you want to display the configuration. |
Usage Notes
If you do not specify any of the optional parameters, then SRVCTL displays the configuration information for all volumes.
If you specify only the -volume
parameter, then SRVCTL displays the configuration for all volumes with that name, regardless of the diskgroup.
If you specify only the -diskgroup
parameter, then SRVCTL displays the configuration information for the volumes that reside in the disk group that you specify.
If you specify only the -device
parameter, then SRVCTL displays the configuration information for the volume matching that device specifier.
If you specify the -diskgroup
and -device
parameters, then SRVCTL displays the configuration information for the volume device that resides in the disk group that you specify.
This command is only available with Oracle Clusterware.
Examples
This command returns information similar to the following:
$ srvctl config volume -device /dev/asm/volume1-123
Diskgroup Name: DG1
Volume Name : VOL1
Volume Device : /dev/asm/volume1-123
Volume is enabled.
Volume is enabled on nodes:
Volume is disabled on nodes:
If you do not specify any parameters, then SRVCTL returns configuration information for all volumes, similar to the following:
$ srvctl config volume
Diskgroup name: DG1
Volume name: VOL1
Volume device: /dev/asm/volume1-123
Volume is enabled.
Volume is enabled on nodes:
Volume is disabled on nodes:
Diskgroup name: DG1
Volume name: VOL2
Volume device: /dev/asm/volume2-456
Volume is enabled.
Volume is enabled on nodes:
Volume is disabled on nodes:
Disables Oracle Clusterware management for a specific volume or all volumes.
This command allows a volume device to be stopped by operating on the Oracle Clusterware resource for the volume. This command does not stop volume device.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl disable volume
command with the following syntax:
srvctl disable volume {-volume volume_name -diskgroup disk_group_name | -device volume_device}
Table A-31 srvctl disable volume Parameters
Parameter | Description |
---|---|
-volume volume_name
|
Specify the name of the volume that you want to disable. This parameter is required. |
-diskgroup disk_group_name
|
Specify the name of the disk group in which the volume that you want to disable resides. |
-device volume_device
|
Specify the path to the volume device that you want to disable. |
You must specify a particular volume that you want to disable. You can specify a volume that resides in either a particular disk group or on a particular volume device.
The srvctl downgrade database
command downgrades the configuration of a database and its services from its current version to the specified lower version.
Use the srvctl downgrade database
command as follows:
srvctl downgrade database -db db_unique_name -oraclehome Oracle_home -targetversion to_version
Table A-32 srvctl downgrade database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-oraclehome Oracle_home
|
The path to the |
-targetversion to_version
|
The version to which to downgrade |
The srvctl enable
command enables the specified object so that it can run under Oracle Clusterware for automatic startup, failover, or restart.
The Oracle Clusterware application supporting the object may be up or down to use this function. The default value is enable
. If the object is already enabled, then SRVCTL returns a message advising you that the object is enabled. Enabled objects can be started, and disabled objects cannot be started.
When you run the enable
command, the object is enabled and available to run under Oracle Clusterware for automatic startup, failover, or restart. Additionally, you can run the srvctl start
command on an enabled object. If you specify -instance
instance_name
or -node
node_name
, then SRVCTL only enables the object on the specified instance or node.
If you do not specify -instance
instance_name
or -node
node_name
, then the enable action applies to the object that you specified, globally, on all nodes in the cluster and also removes any per-node enable settings. Any object you enable globally is also enabled on any nodes you add to the cluster in the future.
Enabling an object globally is different from enabling an object, individually, on each node in the cluster. For example, if you enable a database on several nodes, individually, in a cluster, then, when you run the srvctl start database
command, the database starts only on nodes where the database is enabled. If, however, you enable the database globally, then the srvctl start database
command starts the database on all nodes on which it is configured to run.
Table A-33 srvctl enable Summary
Command | Description |
---|---|
Enables the database resource |
|
Enables a specified disk group on a number of specified nodes |
|
Enables the instance |
|
Enables a listener |
|
Enables node applications and GSD |
|
Enables the Oracle Notification Service daemon |
|
Enables SCAN VIPs |
|
Enables SCAN listeners |
|
Enables a service |
|
Enables a VIP |
|
Enables a volume |
Enables a cluster database and its instances.
Use the srvctl enable database
command with the following syntax:
srvctl enable database -db db_unique_name [-node node_name]
Table A-34 srvctl enable database Parameters
Parameter | Description |
---|---|
-db database_name
|
Database name |
-node node_name
|
The name of the node for which the database resource should be enabled Note: This parameter can be used only with Oracle Clusterware. |
Enables a specific disk group on a number of specified nodes.
Use the srvctl enable diskgroup
command with the following syntax:
srvctl enable diskgroup -diskgroup diskgroup_name [-node "node_list"]
Table A-35 srvctl enable diskgroup Parameters
Parameter | Description |
---|---|
-diskgroup diskgroup_name
|
The Oracle ASM disk group name |
-nodelist node_list
|
Comma-delimited list of node names on which to enable the disk group This parameter is only available with Oracle Clusterware. |
Enables an instance for an Oracle RAC database. If you use this command to enable all instances, then the database is also enabled.
Note:
This command is only available with Oracle Clusterware and Oracle RAC.
If you run this command on an Oracle RAC One Node database, then the command returns an error instructing you to use the database
noun, instead.
Use the srvctl enable instance
command with the following syntax:
srvctl enable instance -db db_unique_name -instance "instance_name_list"
Table A-36 srvctl enable instance Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-instance "instance_name_list"
|
Comma-delimited list of instance names. |
Enables a listener resource.
Use the srvctl enable listener
command with the following syntax:
srvctl enable listener [-listener listener_name] [-node node_name]
Table A-37 srvctl enable listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Name of a listener resource. If you do not specify this parameter, the name of the listener defaults to |
-node node_name
|
Name of a cluster node Note: This parameter can be used only with Oracle Clusterware. |
Enables the node applications on all nodes in the cluster.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl enable nodeapps
command with the following syntax:
srvctl enable nodeapps [-gsdonly] [-adminhelper] [-verbose]
Table A-38 srvctl enable nodeapps Parameters
Parameter | Description |
---|---|
-gsdonly |
Enable only the GSD daemon |
|
Enable the Administrator helper only |
-verbose |
Verbose output |
Enables the Oracle Notification Service daemon.
Note:
This command is only available with Oracle Restart.
Enables all SCAN VIPs, by default, or a specific SCAN VIP identified by its ordinal_number
.
Note:
This command is only available with Oracle Clusterware.
Enables all SCAN listeners, by default, or a specific listener identified by its ordinal_number
.
Note:
This command is only available with Oracle Clusterware.
Enables a service for Oracle Clusterware. Enabling an entire service also affects the enabling of the service over all of the instances by enabling the service at each one. When the entire service is already enabled, an srvctl enable service
operation does not affect all of the instances and enable them. Instead, this operation returns an error. Therefore, you cannot always use the entire set of service operations to manipulate the service indicators for each instance.
Use the srvctl enable service
command with the following syntax:
srvctl enable service -db db_unique_name -service "service_name_list" [-instance instance_name | -node node_name]
Table A-39 srvctl enable service Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-service "service_name_list"
|
Comma-delimited list of service names |
-instance instance_name
|
Name of the database instance where you want the service to run Use this parameter for administrator-managed databases Note: This parameter can be used only with Oracle Clusterware and Oracle RAC. |
-node node_name
|
Name of the node where you want the service to run Use this parameter for policy-managed databases Note: This parameter can be used only with Oracle Clusterware and Oracle RAC. |
Enables a specific VIP.
Note:
This command is only available with Oracle Clusterware.
Enables Oracle Clusterware management for a specific volume or all volumes.
This command allows a volume device to be started by operating on the Oracle Clusterware resource for the volume. This command does not start the volume device, and is different from the SQL command ALTER DISKGROUP ENABLE VOLUME
or the ASMCMD command volenable
, because these two commands bring the volume device online, in a running state, making the volume device accessible.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl enable volume
command with the following syntax:
srvctl enable volume {-volume volume_name -diskgroup disk_group_name | -device volume_device}
Table A-41 srvctl enable volume Parameters
Parameter | Description |
---|---|
-volume volume_name
|
Specify the name of the volume that you want to enable. This parameter is required. |
-diskgroup disk_group_name
|
Specify the name of the disk group in which the volume that you want to enable resides. |
-device volume_device
|
Specify the path to the volume device that you want to enable. |
You must specify a particular volume that you want to enable. You can specify a volume that resides in either a particular disk group or on a particular volume device.
Gets and displays values for the environment variables from the configuration file. Use SRVCTL with the setenv
, getenv
, and unsetenv
verbs to administer the environment configurations for databases, instances, services, and node applications.
Table A-42 srvctl getenv Summary
Command | Description |
---|---|
Gets the database environment values |
|
Gets the listener environment values |
|
Gets the node application environment values |
|
Gets the service environment values |
Displays the values for environment variables associated with a database.
Use the srvctl getenv database
command with the following syntax:
srvctl getenv database -db db_unique_name [-envs "name_list"]
Table A-43 srvctl getenv database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-envs "name_list"
|
Comma-delimited list of the names of environment variables If this parameter is not specified, then the values of all environment variables associated with the database are displayed. |
Gets the environment variables for the specified listener.
Use the srvctl getenv listener
command with the following syntax:
srvctl getenv listener [-listener listener_name] [-envs "name_list"]
Table A-44 srvctl getenv listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Listener name If this parameter is not specified, the name of the listener defaults to |
-envs "name_list"
|
Comma-delimited list of the names of environment variables If this parameter is not specified, then the values of all environment variables associated with the listener are displayed. |
Gets the environment variables for the node application configurations.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl getenv nodeapps
command with the following syntax:
srvctl getenv nodeapps [-viponly] [-onsonly] [-envs "name_list"]
Table A-45 srvctl getenv nodeapps Parameters
Parameter | Description |
---|---|
-viponly |
Displays the VIP address configuration |
-onsonly |
Displays the Oracle Notification Service configuration |
-envs "name_list"
|
Comma-delimited list of the names of environment variables If this parameter is not specified, then SRVCTL displays the values of all environment variables associated with the node applications. |
Gets the environment variables for the specified VIP.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl getenv vip
command with the following syntax:
srvctl getenv vip -vip vip_name [-envs "name_list"] [-verbose]
Table A-46 srvctl getenv vip Parameters
Parameter | Description |
---|---|
-vip vip_name
|
The name of the VIP |
-envs "name_list"
|
Comma-delimited list of the names of environment variables If this parameter is not specified, then the values of all environment variables associated with the VIP are displayed. |
-verbose |
Verbose output |
Enables you to modify the instance configuration without removing and adding Oracle Clusterware resources.
Using modify
preserves the environment in the OCR configuration that would otherwise need to be reentered. The configuration description is modified in the OCR configuration, and a new Oracle Clusterware profile is generated and registered. The change takes effect when the application is next restarted.
Table A-47 srvctl modify Summary
Command | Description |
---|---|
Modifies the configuration for a database |
|
Modifies the configuration for an instance |
|
Modifies the listener configuration |
|
Modifies the configuration for a network |
|
Modifies the configuration for a node application |
|
Modifies the network configuration for the Oracle Notification Service daemon |
|
Modifies the SCAN VIP configuration to match that of a specific SCAN VIP |
|
Updates the SCAN listener configuration to match that of the current SCAN VIP configuration |
|
Modifies the configuration for a service |
|
Modifies a specific server pool |
|
Modifies the VIP to use a different IP address type |
Modifies the configuration for a database.
Syntax
srvctl modify database -db db_unique_name [-eval] [-dbname db_name] [-instance instance_name] [-oraclehome oracle_home] [-user user_name] [-server server_list] [-timeout timeout] [-domain db_domain] [-spfile spfile] [-pwfile password_file_path] [-role {PRIMARY|PHYSICAL_STANDBY|LOGICAL_STANDBY|SNAPSHOT_STANDBY}] [-startoption start_options] [-stopoption stop_options] [-policy {AUTOMATIC | MANUAL | NORESTART}] [-serverpool "server_pool_name" [-node node_name]] [-pqpool pq_server_pool] [{-diskgroup "diskgroup_list" | -nodiskgroup}] [-acfspath "acfs_path_list"] [-css_critical {yes | no}] [-cpucount cpu_count] [-memorytarget memory_target] [-maxmemory max_memory] [-cpucap cpu_cap] [-defaultnetnum network_number] [-force]
Parameters
Table A-48 srvctl modify database Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Unique name for the database. |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. Note: You can only use this parameter with a policy-managed database. |
-dbname db_name |
The name of the database, if it is different from the unique name given by the |
-instance instance_name |
Instance name prefix; this parameter is required for administrator-managed Oracle RAC One Node databases. |
-oraclehome oracle_home |
The path for the Oracle database home directory. |
-user user_name |
The name of the user that owns the Oracle home directory. Note: If you specify the |
-server server_list |
List candidate servers for Oracle RAC One Node databases. Note: You can use this parameter only with administrator-managed Oracle RAC One Node databases. If your Oracle RAC One Node database is policy managed, you cannot use this parameter. |
-timeout timeout |
Online database relocation timeout, in minutes, for Oracle RAC One Node databases. The default is |
-domain db_domain |
The domain for the database. Note: You must use this parameter if you set the |
-spfile spfile |
The path name of the database server parameter file. |
-pwfile password_file_path |
Enter the full path to the location of the password file. |
-role {PRIMARY | PHYSICAL_STANDBY | LOGICAL_STANDBY | SNAPSHOT_STANDBY} |
The role of the database in an Oracle Data Guard configuration. The default is |
-startoption start_options |
Startup options for the database, such as Notes:
|
-stoption stop_options |
Stop options for the database, such as |
-policy {AUTOMATIC | MANUAL | NORESTART} |
Management policy for the database.
|
-serverpool "server_pool_name" [-pqpool "pq_pool_name"] |
Specify the name of a server pool used to control database placement. If you do not specify this parameter, then it defaults to the Generic server pool. You can optionally also specify the name of a parallel query server pool to be used by the database. Notes:
|
-node node_name |
Node name on which you want to register a noncluster, or single instance, Oracle database. Note: This parameter can be used only with Oracle Clusterware and can be used with the |
-diskgroup "disk_group_list" |
Comma-delimited list of Oracle ASM disk groups if database uses Oracle ASM storage. |
-acfspath "acfs_path_list" |
A single Oracle ACFS path or a comma-delimited list of Oracle ACFS paths enclosed in double quotation marks ( Use this parameter to create dependencies on Oracle ACFS file systems other than |
-css_critical {YES | NO} |
You can add weight to a service by setting this parameter to Note: You can use this parameter only on an administrator-managed node. Should the node become policy managed, at some point, this parameter will no longer apply. |
-cpucount cpu_count |
Specify the number of CPUs. The default value is 0. |
-memorytarget memory_target |
Specify the target memory, in MB, to be allocated for the database. The default is 0. |
-maxmemory max_memory |
Specify the maximum memory, in MB, to be allocated for the resource. If you specify |
-cpucap cpu_cap |
Specify a percentage from 1 to 100 that is the maximum utilization of the workload CPUs the database requires. The default is 0. |
-defaultnetnum network_number |
Specify a network number to which services will default in the event you do not specify a network number when you add a service. |
See Also::
Oracle Data Guard Concepts and Administration for more information about database roles
SQL*Plus User's Guide and Reference for more information about database startup options
SQL*Plus User's Guide and Reference for more information about database shutdown options
Usage Notes
The srvctl modify database
command can convert administrator-managed databases to policy-managed databases. For a running administrator-managed database, if the server list is supplied, then the node where the database is running must be on that list. The instance name prefix cannot be modified after running the srvctl add database
command.
You cannot change the management policy from AUTOMATIC
(using the -policy
parameter) for Oracle RAC One Node databases. Any attempt to do so results in an error message. The same is true for the -node
parameter, which is used to change the node on which a noncluster database runs.
For policy-managed Oracle RAC One Node databases, you can use the -serverpool
parameter to move an Oracle RAC One Node database between server pools but you can only specify one server pool. Specifying a list of server pools returns an error.
Examples
The following example changes the role of a database to a logical standby:
$ srvctl modify database -db crm -role logical_standby
The following example directs the racTest
database to use the SYSFILES
, LOGS
, and OLTP
Oracle ASM disk groups:
$ srvctl modify database -db racTest -diskgroup "SYSFILES,LOGS,OLTP"
Syntax
srvctl modify instance -db db_unique_name -instance instance_name -node node_name
Parameters
Table A-49 srvctl modify instance Command Parameters
Parameter | Description |
---|---|
-database db_unique_name |
Specify the unique name for the database. |
-instance instance_name |
Specify the database instance name. Notes:
|
-node node_name |
Name of the node on which to run the instance. You can set the value of this parameter to |
Usage Notes
You cannot use this command to rename or relocate a running instance.
Examples
The following example to changes the configuration of an administrator-managed database, amdb
, so that the database instance, amdb1
, runs on the specified node, mynode
:
$ srvctl modify instance -db amdb -instance amdb1 -node mynode
The following example causes the policy-managed database pmdb
, when and if it runs on mynode
, to use the instance name pmdb1
:
$ srvctl modify instance -db pmdb -instance pmdb1_1 -node mynode
The following example removes the directive established by the previous example:
$ srvctl modify instance -db pmdb -instance pmdb1_1 -node ""
Changes the Oracle home directory from which the listener runs, the name of the operating system user who owns Oracle home directory from which the listener runs, the listener endpoints, or the public subnet on which the listener listens, either for the default listener, or a specific listener, that is registered with Oracle Restart or with Oracle Clusterware.
If you want to change the name of a listener, then use the srvctl remove listener
and srvctl add listener
commands.
Use the srvctl modify listener
command with the following syntax:
srvctl modify listener [-listener listener_name] [-oraclehome oracle_home] [-user user_name] [-netnum network_number] [-endpoints "[TCP:]port_list[/IPC:key][/NMP:pipe_name][/TCPS:s_port][/SDP:port]"]
Table A-50 srvctl modify listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
The name of the listener. If you do not specify this parameter, then SRVCTL uses the default name |
-oraclehome oracle_home
|
When this parameter is specified, SRVCTL moves the listener to run from the specified Oracle home. Note: When using this parameter, the command should be run as privileged user to enable SRVCTL to update resource ownership corresponding to the new |
-user user_name
|
The name of the operating system user who will own the specified Oracle listener Note: This parameter can be used only with Oracle Clusterware. |
-netnum network_number
|
This parameter changes the public subnet on which the listener listens. Note: You should always have at least one listener on the default network. Do not use this parameter to change the network of the only listener that listens on the default network. |
-endpoints "[TCP:]port_list [/IPC:key][/NMP:pipe_name] [/TCPS:s_port][/SDP:port]" |
Protocol specifications for the listener. Note: You can modify this attribute using Online Resource Attribute Modification. |
Modifies the subnet, network type, or IP address type for a network.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl modify network
command with one of the following syntax models:
srvctl modify network [-netnum network_number] [-subnet subnet/netmask [/if1[|if2|...]]] [-nettype network_type | -iptype {ipv4 | ipv6 | both]} [-pingtarget "ping_target_list"] [-verbose]
Table A-51 srvctl modify network Parameters
Parameter | Description |
---|---|
-netnum network_number
|
Specify a network number. The default is 1. |
-subnet subnet/netmask [/if1[|if2|...]] |
Specifies a subnet number for the public network. The netmask and interfaces specified, if any, change those of the network you are modifying. If you specify an IPv6 subnet, then enter a prefix length, such as 64, in place of If you are changing the network type using the |
-nettype network_type
|
Specify the network type: |
-iptype ip_type
|
The type of IP address: |
-pingtarget "ping_target_list"
|
Specify a comma-delimited list of IP addresses or host names to ping. |
-verbose |
Verbose output. |
On Linux and UNIX systems, you must be logged in as root
and on Windows, you must be logged in as a user with Administrator privileges to run this command.
You can modify the IP address type for a network from IPv4 to IPv6, or from IPv6 to IPv4.
See Also:
Oracle Clusterware Administration and Deployment Guide for more information
If you specify static
for the network type, then you must provide the virtual IP address using the srvctl add vip
command.
If you specify dhcp
for the network type, then the VIP agent obtains the IP address from a DHCP server.
If you specify autoconfig
for the network type, then the VIP agent generates a stateless IPv6 address for the network. You can only use this parameter for IPv6 networks. If the subnet/netmask specification is not for an IPv6 address, then SRVCTL returns an error.
If you change a network from static
to mixed
, then you must first configure GNS, so that the dynamic addresses obtained can have names registered for them.
If you specify mixed
for the network type, then the VIP resource uses both a static IP address and an IP address obtained dynamically, either DHCP or autoconfig.
If you specify mixed_autoconfig
for the network type, then the VIP resource retains the static IP configuration and either obtains an IP address from a DHCP server for an IPv4 network specification or generates a stateless auto-configured IP address for an IPv6 network specification.
The following example changes the subnet number, netmask, and interface list:
# srvctl modify network -subnet 192.168.2.0/255.255.255.0/eth0
The following example changes the second network to DHCP:
# srvctl modify network -netnum 2 -nettype dhcp
The following example adds an IPv6 subnet and netmask to the default network:
# srvctl modify network -subnet 2606:b400:400:18c0::/64
The following example removes the IPv4 configuration from a network:
# srvctl modify network -iptype ipv6
Modifies the configuration for a node application.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl modify nodeapps
command with one of the following syntax models, specifying either a specific node and VIP or a specific subnet and netmask:
srvctl modify nodeapps {[-node node_name -address {vip_name|vip_address}/ netmask[/if1[|if2|...]] [-skip]] [-nettype network_type] [-emport em_port] [-onslocalport ons_local_port] [-onsremoteport ons_remote_port] [-remoteservers host:[port][,host:port,...]] [-verbose] [-clientdata file] [-pingtarget "ping_target_list"]
srvctl modify nodeapps [-subnet subnet/netmask[/if1[|if2|...]] [-nettype network_type] [-emport em_port] [-onslocalport ons_local_port] [-onsremoteport ons_remote_port] [-remoteservers host:[port][,host:port,...]] [-verbose] [-clientdata file] [-pingtarget "ping_target_list"]
Table A-52 srvctl modify nodeapps Parameters
Parameter | Description |
---|---|
-node node_name
|
The name of the node on which the node application you want to modify resides. |
-address {vip_name|vip_address}/ netmask[/if1[|if2|...]] |
Node-level virtual IP name or address. The address specified by name or IP must match the subnet number of the default network. Note: This parameter must be used for upgrade configurations and new non-DHCP configurations |
-skip |
Specify this parameter to skip checking the reachability of the VIP address. |
-subnet subnet/netmask [/if1[|if2|...]] |
Specifies a subnet number for the public network. The netmask and interfaces specified, if any, change those of the default network. Additionally, if you specify the |
-nettype network_type
|
Specifies the network server type, such as |
-emport em_port
|
Local port on which Oracle Enterprise Manager listens. Note: You can modify this attribute using Online Resource Attribute Modification. |
-onslocalport ons_local_port
|
Port on which the Oracle Notification Service daemon listens for local client connections. Notes:
|
-onsremoteport ons_remote_port
|
Port on which the Oracle Notification Service daemon listens for connections from remote hosts. Notes:
|
-remoteservers host:port, [host:port,...] |
List of |
-clientdata file
|
Specify the file with a wallet to import, or an empty string to delete a wallet used for SSL to secure Oracle Notification Service communication. |
-pingtarget "pingtarget_list"
|
Specify a comma-separated list enclosed in double quotation marks ( |
-verbose |
Verbose output. |
Modifies the ports used by the Oracle Notification Service daemon that is registered with Oracle Restart.
Note:
This command is available only with Oracle Restart.
Use the srvctl modify ons
command with the following syntax:
srvctl modify ons [-onslocalprt ons_local_port] [-onsremoteport ons_remote_port] [-emport em_port] [-remoteservers host[:port][,host[:port]][...]] [-verbose]
Table A-53 srvctl modify ons Parameters
Parameter | Description |
---|---|
-onslocalport ons_local_port
|
The Oracle Notification Service daemon listening port for local client connections Note: The local port and remote port must each be unique. |
-onsremoteport ons_remote_port
|
The Oracle Notification Service daemon listening port for connections from remote hosts Note: The local port and remote port must each be unique. |
-remoteservers host[:port] [,host[:port]][...]] |
A list of Note: If you do not specify |
-verbose |
Display verbose output |
scan_name
you specify in DNS.You use this command when DNS was modified to add, change, or remove IP addresses, and now you must adjust the Oracle Clusterware resource configuration to match.
Syntax
srvctl modify scan -scanname scan_name [-netnum network_number]
Parameters
Table A-54 srvctl modify scan Command Parameters
Parameter | Description |
---|---|
-scanname scan_name |
Identifies the SCAN name that resolves to the SCAN VIPs that you want to modify. Note: You can modify this attribute using Online Resource Attribute Modification. |
-netnum network_number |
The optional network number from which VIPs are obtained. If not specified, the VIPs are obtained from the same default network from which the |
Example
Assume your system currently has a SCAN named scan_name1
, and it resolves to a single IP address in DNS. If you modify the SCAN scan_name1
in DNS to resolve to three IP addresses, then use the following command to create the additional SCAN VIP resources:
$ srvctl modify scan -scanname scan_name1
Syntax
srvctl modify scan_listener {-update | -endpoints [TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key] [/NMP:pipe_name][/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]"} [-invitednodes node_list] [-invitedsubnets subnet_list]
Parameters
Table A-55 srvctl modify scan_listener Command Parameters
Parameter | Description |
---|---|
-update |
Use this parameter to update SCAN listener configuration to match the current SCAN VIP configuration. This parameter adds new resources or removes existing SCAN listener resources to match the number of SCAN VIP resources. |
-endpoints "[TCP:]port_list[:FIREWALL={ON|OFF}][/IPC:key] [/NMP:pipe_name][/{TCPS|SDP|EXADIRECT}port_list[:FIREWALL={ON|OFF}]]"] |
Protocol specifications for the SCAN listener. Use You can also specify endpoints for TCPS, SDP, and EXADIRECT ports. |
-invitednodes node_list |
Use this parameter to specify a comma-delimited list of host names from outside the cluster that are allowed to register with the SCAN listener. |
-invitedsubnets subnet_list |
Use this parameter to specify a comma-delimited list of subnets from outside the cluster that are allowed to register with the SCAN listener. |
Example
Assume your system currently has a SCAN named scan_name1
, and you recently modified the DNS entry to resolve to three IP addresses instead of one. After running the srvctl modify scan
command to create additional SCAN VIP resources, use the following command to create Oracle Clusterware resources for the additional two SCAN listeners to go with the two additional SCAN VIPs:
$ srvctl modify scan_listener -update
Modifies service configuration.
This command supports some online modifications to the service, such as:
Moving a service member from one instance to another
Performing online changes to service attributes from DBMS_SERVICE
(for example, failover delay, runtime load balancing goal, and so on)
Adding a new preferred or available instance
Removing preferred or available instances for a service
Caution:
Oracle recommends that you limit configuration changes to the minimum requirement and that you not perform other service operations while the online service modification is in progress.
Syntax and Parameters
Use one of the following forms of the srvctl modify service
command, depending on the task you want to perform, with the specified syntax:
To move a service from one instance to another:
srvctl modify service -db db_unique_name -service service_name -oldinst old_instance_name -newinst new_instance_name [-force]
Note:
This form of the command is only available with Oracle Clusterware.
Table A-56 srvctl modify service Parameters for Moving a Service
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name for the database. |
-service service_name |
Specify a service name. If you do not specify a service name, then SRVCTL moves all services. |
-oldinst old_instance_name |
Specify the name of the instance from which you want to move the service. |
-newinst new_instance_name |
Specify the name of the instance to which you want to move the service. |
-force |
Disconnects all sessions during stop or relocate service operations. |
To change an available instance to a preferred instance for a service:
srvctl modify service -db db_unique_name -service service_name -available avail_inst_name -toprefer [-force]
Note:
This form of the command is only available with Oracle Clusterware and does not accept placement parameters for Oracle RAC One Node databases.
Table A-57 srvctl modify service Parameters for Changing to a Preferred Instance
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name for the database. |
-service service_name |
Specify the name of the service you want to modify. |
-available available_inst_name |
Specify the name of the available instance you want to change. |
-toprefer |
Specify this parameter to change the instance status to preferred. |
-force |
Disconnect all sessions during stop or relocate service operations. For planned operations, the user experience is best if using an Oracle Connection Pool with FAN, and not forcing disconnect. The FAN planned event causes the Oracle pool to drain the requests with no interruption to the users. |
To change the available and preferred status for multiple instances:
srvctl modify service -db db_unique_name -service service_name -modifyconfig -preferred "preferred_list" [-available "available_list"] [-force]
Note:
This form of the command is only available with Oracle Clusterware and does not accept placement parameters for Oracle RAC One Node databases.
Table A-58 srvctl modify service Parameters for Changing Status of Multiple Instances
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name for the database. |
-service service_name |
Specify the name of the service you want to modify. |
-modifyconfig |
This parameter directs SRVCTL to use only the instances named for this service (unnamed instances already assigned to the service are removed). |
-preferred "preferred_instance_list" |
Specify a comma-delimited list of preferred instances enclosed within double quotation marks (""). |
-available "available_instance_list" |
Specify a comma-delimited list of available instances enclosed within double quotation marks (""). |
-force |
Disconnect all sessions during stop or relocate service operations. For planned operations, the user experience is best if using an Oracle Connection Pool with FAN, and not forcing disconnect. The FAN planned event causes the connection pool to drain the requests with no interruption to the users. |
To modify other service attributes or to modify a service for Oracle Clusterware:
srvctl modify service -db db_unique_name -service service_name [-eval] [-serverpool pool_name] [-cardinality {UNIFORM|SINGLETON}] [-drain_timeout timeout] [-stopoption {NONE|IMMEDIATE|TRANSACTIONAL}] [-pqservice pqsvc_name] [-pqpool pq_pool_list] [-pdb pluggable_database] [-tafpolicy {BASIC|NONE}] [-edition edition_name] [-role "[PRIMARY][,PHYSICAL_STANDBY] [,LOGICAL_STANDBY][,SNAPSHOT_STANDBY]"] [-notification {TRUE|FALSE}] [-dtp {TRUE|FALSE}] [-clbgoal {SHORT|LONG}] [-rlbgoal {NONE|SERVICE_TIME|THROUGHPUT}] [-failovertype {NONE|SESSION|SELECT|TRANSACTION}] [-failovermethod {NONE|BASIC}] [-failoverrestore [NONE|LEVEL1]] [-failoverretry failover_retries] [-failoverdelay failover_delay] [-policy {AUTOMATIC|MANUAL}] [-sql_translation_profile profile_name] [-commit_outcome {TRUE|FALSE}] [-retention retention_time] [-replay_init_time replay_initiation_time] [-session_state {STATIC|DYNAMIC}] [-global_override] [-verbose] [-force]
Table A-59 srvctl modify service Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name for the database. |
-service service_name |
Specify the name of the service you want to modify. |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. Note: You can only use this parameter with a policy-managed service. |
-serverpool pool_name |
The name of a server pool used when the database is policy managed. Note: This parameter can be used only with Oracle RAC and only for policy-managed databases. |
-cardinality {UNIFORM|SINGLETON} |
Specify the cardinality of the service, either Note: This parameter can be used only with Oracle Clusterware. |
-drain_timeout timeout |
Specify the time, in seconds, allowed for resource draining to be completed. Accepted values are an empty string (""), 0, or any positive integer. The default value is an empty string, which means that this parameter is not set. If it is set to 0, then draining occurs, immediately. The draining period is intended for planned maintenance operations. During the draining period, all current client requests are processed, but new requests are not accepted. When set on the service this value is used when the command line value is not set. |
-stopoption {NONE|IMMEDIATE|TRANSACTIONAL} |
Specify the mode in which the service is stopped. If you set this parameter on the service, then this value is used if you do not set the value on the command line.
If you specify The default is taken from the service setting, when specified on the service. Otherwise the default is Note: You must use the |
-pqservice pqsvc_name |
Specify a comma-delimited list of parallel query service names. |
-pqpool pq_pool_list |
Specify a comma-delimited list of parallel query server pool names. |
-pdb pluggable_database |
Specify the name of a pluggable database (PDB). Note: You can specify a PDB property when you create or modify a service. The PDB property associates the service with the specified PDB. You can view the PDB property for a service by querying the ALL_SERVICES data dictionary view or, when using the SRVCTL utility, by running the When create or modify a service with the specified PDB, SRVCTL does not check if the PDB exists. Before running this command, you must ensure that the PDB exists. |
-tafpolicy {BASIC|NONE} |
Specify the transaction failover (TAF) policy (for administrator-managed databases only). |
-edition edition_name |
The initial session edition of the service. When an edition is specified for a service, all subsequent connections that specify the service use this edition as the initial session edition. However, if a session connection specifies a different edition, then the edition specified in the session connection is used for the initial session edition. SRVCTL does not validate the specified edition name. During connection, the connect user must have |
-role "[PRIMARY][,PHYSICAL_STANDBY] [,LOGICAL_STANDBY][,SNAPSHOT_STANDBY]" |
The database modes for which the service should be started automatically. You can specify one or more roles in a comma-delimited list. Note: The |
-notification {TRUE|FALSE} |
Specify a value of |
-dtp {TRUE|FALSE} |
Specify |
-clbgoal {SHORT|LONG} |
Use this parameter to set a connection load balancing goal: set to |
-rlbgoal {NONE|SERVICE_TIME|THROUGHPUT} |
Use this parameter to set a runtime load balancing goal. Set this parameter to |
-failovertype {NONE|SESSION|SELECT|TRANSACTION} |
Use this parameter to set the failover type. To enable Application Continuity, set this parameter to |
-failovermethod {NONE|BASIC} |
Specify the TAF failover method (for backward compatibility only). |
-failoverrestore [NONE|LEVEL1] |
For Application Continuity, when you set the For OCI applications using TAF or Application Continuity, setting |
-failoverretry failover_retries |
For Application Continuity and TAF, specify the number of attempts to connect after an incident. |
-failoverdelay failover_delay |
For Application Continuity and TAF, specify the time delay (in seconds) between reconnect attempts per incident at failover. |
-policy {AUTOMATIC|MANUAL} |
Specify the service management policy. |
-sql_translation_profile profile_name |
Use this parameter to specify a SQL translation profile for a service that you are modifying after you have migrated applications from a non-Oracle database to an Oracle database. If you want to set the SQL translation profile to a NULL value, then you must enter an empty string after the Note: Before using the SQL translation feature, you must migrate all server-side application objects and data to the Oracle database. |
-commit_outcome {TRUE|FALSE} |
Enable Transaction Guard; when set to |
-retention retention_time |
For Transaction Guard (with the |
-replay_init_time replay_initiation_time |
For Application Continuity; this parameter specifies the time, in seconds, from when the original request started. Application Continuity will not replay after the specified amount of time has passed. This attribute avoids the unintentional replay of a request when a system is recovered after a long period. The default value is 300 (5 minutes). |
-session_state {STATIC|DYNAMIC} |
For Application Continuity; this parameter specifies whether the session state that is not transactional is changed by the application. Oracle recommends a value of |
-global_override |
Override value to modify the global service attributes. Use this parameter with the |
–verbose |
Display verbose output. |
-force |
Force the modify operation, stopping the service on some nodes as necessary. |
Usage Notes
When performing online changes to service attributes (for example, failover delay, Runtime Load Balancing Goal, and so on), the changes take effect only when the service is next (re)started.
When a service configuration is modified so that a new preferred or available instance is added, the running state of the existing service is not affected. However, the newly added instances will not automatically provide the service, until a srvctl start service
command is issued.
When there are available instances for the service, and the service configuration is modified so that a preferred or available instance is removed, the running state of the service may change unpredictably:
The service is stopped and then removed on some instances according to the new service configuration.
The service may be running on some instances that are being removed from the service configuration.
These services will be relocated to the next free instance in the new service configuration.
Because of these considerations, when the online service is being modified, users may experience a brief service outage on some instances even if the instances are not being removed. Or users may experience a brief service outage on instances that are being removed from the service.
Examples
An example of moving a service member from one instance to another is:
$ srvctl modify service -db crm -service crm -oldinst crm1 -newinst crm2
An example of changing an available instance to a preferred instance is:
$ srvctl modify service -db crm -service crm -available crm1 -toprefer
The following command exchanges a preferred and available instance:
$ srvctl modify service -db crm -service crm -modifyconfig -preferred "crm1" \ -available "crm2"
Modifies a server pool in a cluster. If minimum size, maximum size, and importance are numerically increased, then the CRS daemon may attempt to reassign servers to this server pool, if by resizing other server pools have comparatively lower minimum size and importance, to satisfy new sizes of this server pool.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl modify srvpool
command with the following syntax:
srvctl modify srvpool -serverpool pool_name [-eval] [-importance importance] [-min min_size] [-max max_size] [-servers "server_list"] [-category "server_category"] [-verbose] [-force]
Table A-60 srvctl modify srvpool Parameters
Parameter | Description |
---|---|
-serverpool pool_name
|
The name of the server pool to modify, |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. |
-importance importance
|
The new importance of the server pool. |
-min min_size
|
The new minimum size of the server pool. The default value is 0. |
-max max_size
|
The new maximum size of the server pool. A value of |
-servers "server_list"
|
A comma-delimited list of candidate server names. Note: In Oracle Database 12c, servers are assigned to server pools according to the value of the |
-category "server_category"
|
Server category (or |
-verbose |
Display verbose output |
-force |
Force the operation even though the utility stops some resource(s). |
Modifies IP address type but you can also use it to modify just the IP address.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl modify vip
command with the following syntax:
srvctl modify vip -node node_name -address {VIP_name|ip}/netmask[/if1[|if2|...]] [-netnum network_number] [-verbose]
Table A-61 srvctl modify vip Parameters
Parameter | Description |
---|---|
-node node_name
|
The name of the node on which you are changing the VIP. |
-address {VIP_name|ip}/netmask [/if1[|if2|...]] |
Use this parameter to change the configuration of an existing VIP. If the VIP has an IPv4 address and the address you specify is IPv6, and the IP address type is set to You can specify one |
-netnum network_number
|
The optional network number from which VIPs are obtained. If you do not specify this parameter, then the VIPs are obtained from the same default network from which the |
-verbose |
Verbose output |
Note:
You cannot have multiple VIPs on the same net number (subnet or interface pair) on the same node.
The predict
command predicts what happens when a resource fails and cannot be restarted on the same node. This command does not make any modifications to the system.
Table A-62 srvctl predict Summary
Command | Description |
---|---|
Predicts the consequences of database failure |
|
Predicts the consequences of diskgroup failure |
|
Predicts the consequences of listener failure |
|
Predicts the consequences of network failure |
|
Predicts the consequences of SCAN failure |
|
Predicts the consequences of SCAN listener failure |
|
Predicts the consequences of service failure |
|
Predicts the consequences of VIP failure |
The srvctl predict database
command predicts what happens if the specified database fails.
Syntax and Parameters
Use the srvctl predict database
command with the following syntax:
srvctl predict database -db db_unique_name [-verbose]
Table A-63 srvctl predict database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database. |
-verbose |
Verbose output. |
Example
The following example predicts what happens if the database named racdb
fails:
srvctl predict database -db racdb
Predicts the consequences of and Oracle ASM disk group failure.
Use the srvctl predict diskgroup
command with the following syntax:
srvctl predict diskgroup -diskgroup diskgroup_name [-verbose]
Table A-64 srvctl predict diskgroup Parameters
Parameter | Description |
---|---|
-diskgroup diskgroup_name
|
The name of the Oracle ASM disk group for which you want to evaluate failure |
-verbose |
Display verbose output. |
Predicts the consequences of listener failure.
Use the srvctl predict listener
command with the following syntax:
srvctl predict listener listener_name [-verbose]
Table A-65 srvctl predict listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Specify the name of the listener for which you want to predict the consequences of a failure. |
-verbose |
Display verbose output. |
Predicts the consequences of network failure.
Use the srvctl predict network
command with the following syntax:
srvctl predict network [-netnum network_number [-verbose]
Table A-66 srvctl predict network Parameters
Parameter | Description |
---|---|
-netnum network_number
|
Specify the network for which you want to evaluate failure. The default value is 1. |
-verbose |
Display verbose output. |
Predicts the consequences of SCAN failure.
Use the srvctl predict scan
command with the following syntax:
srvctl predict scan -scannumber ordinal_number [-verbose]
Table A-67 srvctl predict scan Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies the SCAN VIP for which you want to simulate failure. The range of values you can specify for this parameter is 1 to 3. |
-verbose |
Display verbose output. |
Predicts the consequences of SCAN listener failure.
Use the srvctl predict scan_listener
command with the following syntax:
srvctl predict scan_listener -scannumber ordinal_number [-verbose]
Table A-68 srvctl predict scan_listener Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies the SCAN listener. The range of values you can specify for this parameter is 1 to 3. |
-verbose |
Display verbose output. |
Predicts the consequences of service failure.
Use the srvctl predict service
command with the following syntax:
srvctl predict service -db db_unique_name -service service_name [-verbose]
Table A-69 srvctl predict service Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-service "service_name,..."
|
Comma-delimited list of service names |
-verbose |
Display verbose output |
Predicts the consequences of VIP failure.
Use the srvctl predict vip
command with the following syntax:
srvctl predict vip [-vip vip_name] [-verbose]
Table A-70 srvctl predict vip Parameters
Parameter | Description |
---|---|
-vip vip_name
|
Specify the name of the VIP for which you want to evaluate the consequences of failure. |
-verbose |
Display verbose output |
The relocate
command causes the specified object to run on a different node.
The specified object must be running already.
The relocation of the object is temporary until you modify the configuration. The previously described modify
command permanently changes the configuration.
Table A-71 srvctl relocate Command Summary
Command | Description |
---|---|
srvctl relocate database |
Relocates an Oracle RAC One Node database to a different node. |
srvctl relocate instance |
Relocates a database instance. |
srvctl relocate scan |
Relocates a SCAN VIP from its current hosting server to another server within the cluster. |
srvctl relocate scan_listener |
Relocates a SCAN listener from its current hosting server to another server within the cluster. |
srvctl relocate service |
Relocates the named services from one named instance to another named instance, or all services that can move, if no service is specified. Services that cannot move remain where they are. |
srvctl relocate vip |
Relocates a specific VIP from one node to another node within the cluster. |
The srvctl relocate database
command initiates the relocation of an Oracle RAC One Node database from one node to another node. This command also cleans up after a failed relocation.
The srvctl relocate database
command can only be used for relocating Oracle RAC One Node databases.
Use the srvctl relocate database
command with one of these syntax models:
srvctl relocate database -db db_unique_name [-node target_node] [-timeout timeout] [-stopoption NORMAL] [-verbose] srvctl relocate database -db db_unique_name -abort [-revert] [-verbose]
Table A-72 srvctl relocate database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name of the database to relocate. |
-node target
|
Target node to which to relocate the Oracle RAC One Node database. Note: You must supply this parameter if you are relocating an administrator-managed Oracle RAC One Node database. |
-timeout timeout
|
Online database relocation timeout, in minutes, for Oracle RAC One Node databases. The default is |
-stopoption NORMAL |
Use this parameter to shut down an existing database instance using |
-abort |
Abort failed online database relocation. |
-revert |
Removes the target node of a failed online relocation request from the candidate server list of an administrator-managed Oracle RAC One Node database. |
-verbose |
Verbose output. |
If the Oracle RAC One Node database you want to relocate is not running, then the command returns an error.
If another online database relocation is active for this Oracle RAC One Node database, then the command returns an error.
If an online database relocation for this Oracle RAC One Node database has failed and the target nodes are not the same for either relocation, then the command returns an error instructing you to abort the failed online database relocation and then initiate a new one.
If an online database relocation for this Oracle RAC One Node database has failed and the target nodes are the same (or you do not specify the target), then the command attempts to relocate the database.
Relocates a specific SCAN VIP from its current hosting node to another node within the cluster.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl relocate scan
command with the following syntax:
srvctl relocate scan -scannumber ordinal_number [-node node_name]
Table A-73 srvctl relocate scan Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies which SCAN VIP you want to relocate. The range of values you can specify for this parameter is 1 to 3. |
-node node_name
|
The name of a single node. If you do not specify this parameter, then the utility chooses the node to which the SCAN VIP is relocated. |
Relocates a specific SCAN listener from its current hosting node to another node within the cluster.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl relocate scan_listener
command with the following syntax:
srvctl relocate scan_listener -scannumber ordinal_number [-node node_name]
Table A-74 srvctl relocate scan_listener Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies which SCAN VIP you want to relocate. The range of values you can specify for this parameter is 1 to 3. |
-node node_name
|
The name of a single node. If you do not specify this parameter, then the utility chooses the node to which the SCAN VIP is relocated. |
Relocates servers to a server pool in the cluster.
Use the srvctl relocate server
command with the following syntax:
srvctl relocate server -servers "server_name_list" -serverpool pool_name [-eval] [-force]
Table A-75 srvctl relocate server Parameters
Parameter | Description |
---|---|
-servers "server_name_list"
|
A single server name or a comma-delimited list of server names enclosed in double quotation marks ( |
-serverpool pool_name
|
The name of the server pool to which you want to move servers. |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. |
-force |
Use the |
Use the srvctl relocate service
command to temporarily relocate the specified service names from one specified instance to another specified instance.
This command works on only one source instance and one target instance at a time, relocating a service or all services from a single source instance to a single target instance.
Syntax
srvctl relocate service -db db_unique_name [-service service_name | -pdb pluggable_database] {-oldinst old_inst_name [-newinst new_inst_name] | -currentnode source_node [-targetnode target_node]} [-drain_timeout timeout] [-wait YES | NO] [-pq] [-force [-noreplay]] [-eval] [-verbose]
Parameters
Table A-76 srvctl relocate service Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify a unique name for the database. |
-service service_name |
Specify the name of the service you want to relocate. If you do not specify any services, then all services that can be relocated, are relocated. Those that cannot be relocated remain in place. |
-pdb pluggable_database |
Use this parameter to relocate services running on a specific pluggable database. |
-oldinst old_inst_name |
Specify the name of the instance from which you are relocating the service. |
-newinst new_inst_name |
Specify the name of the instance to which you are relocating the service. This parameter is optional. If you do not specify an instance, then Oracle Clusterware chooses a new one. Note: If you are using an administrator-managed database, then you must use the |
-currentnode source_node |
Name of the node where the service is currently running. |
-targetnode target_node |
Name of node where the service is to be relocated. If you do not specify a target node, then Oracle Clusterware chooses a new location. Note: If you are using a policy-managed database, then you must use the |
-drain_timeout timeout |
Specify the time, in seconds, allowed for resource draining to be completed. Accepted values are an empty string (""), 0, or any positive integer. The default value is an empty string, which means that this parameter is not set. If it is set to 0, then draining occurs, immediately. The draining period is intended for planned maintenance operations. During the draining period, all current client requests are processed, but new requests are not accepted. When set on the service this value is used when the command line value is not set. |
-wait YES | NO |
Choose |
-stopoption option |
Specify the mode in which the service is stopped. When set on the service, this value is used if you do not set the value on the command line.
If you specify The default is taken from the service setting, when specified on the service. Otherwise the default is Note: You must use the |
–pq |
Performs the action on a parallel query service. |
–force [-noreplay] |
Disconnect all sessions during stop or relocate service operations. Optionally, you can specify the The |
–eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. |
–verbose |
Verbose output. |
Example
To temporarily relocate a named service member for the crm
service from the database instance crm1
to the database instance crm3
:
$ srvctl relocate service -db crm -service crm -oldinst crm1 -newinst crm3
Related Topics
Relocates a specific VIP from its current hosting node to another node within the cluster.
Use the srvctl relocate vip
command with the following syntax:
srvctl relocate vip -vip vip_name [-node node_name] [-force] [-verbose]
Table A-77 srvctl relocate vip Parameters
Parameter | Description |
---|---|
-vip vip_name
|
Specify the name of the VIP you want to relocate. |
-node node_name
|
Specify the name of the target node where the VIP should be relocated. |
-force |
Specify this option to force the relocation of the VIP. |
|
Display verbose output. |
Removes the configuration information for the specified target from Oracle Clusterware. Environment settings for the object are also removed.
Using this command does not destroy the specified target.
Use the remove
verb to remove the associated resource from the management of Oracle Clusterware or Oracle Restart. Depending on the noun used, you can remove databases, services, nodeapps, Oracle Notification Service, and listeners.
If you do not use the force parameter (-force
), then Oracle Clusterware or Oracle Restart prompts you to confirm whether to proceed. If you use -force
, then the remove operation proceeds without prompting and continues processing even when it encounters errors. Even when the Oracle Clusterware resources cannot be removed, the OCR configuration is removed, so that the object now appears not to exist, but there are still Oracle Clusterware resources. Use the force parameter (-force
) with extreme caution because this could result in an inconsistent OCR.
To use the remove
verb, you must first stop the node applications, database, instance, or service for which you are specifying srvctl remove
. Oracle recommends that you perform a disable operation before using this command, but this is not required. You must stop the target object before running the srvctl remove
command. See the stop
command.
Table A-78 srvctl remove Summary
Command | Description |
---|---|
Removes a database and configuration |
|
Removes a disk group from the Oracle Clusterware or Oracle Restart configuration |
|
Removes instances and configurations of administrator-managed databases |
|
Removes the configuration of the specified listener from Oracle Clusterware or Oracle Restart |
|
Removes a network from the cluster configuration |
|
Removes node applications |
|
Removes Oracle Notification Service instances |
|
Removes all Oracle Clusterware resources for all SCAN VIPs |
|
Removes all Oracle Clusterware resources for all SCAN listeners |
|
Removes services from the Oracle Clusterware or Oracle Restart configuration |
|
Removes a specific server pool |
|
Removes specific VIPs |
|
Removes a specific volume |
Removes database configurations.
After running this command, ensure that the password file is in the default location if you want to connect to the database as the SYS user with the SYS user's password.
Syntax
srvctl remove database -db db_unique_name [-force] [-noprompt] [-verbose]
Parameters
Table A-79 srvctl remove database Command Parameters
Parameter | Description |
---|---|
-database db_unique_name |
Unique name for the database. |
-force |
Forcibly remove the database and ignore any dependencies. |
-noprompt |
Suppress prompts. |
-verbose |
Display verbose output. |
Example
To remove a database named crm
:
$ srvctl remove database -db crm
Removes a specific Oracle ASM disk group resource from Oracle Clusterware or Oracle Restart.
Removes the configurations for an instance of an administrator-managed database. To remove the configurations of a policy-managed database, you must shrink the size of the server pool with the srvctl modify srvpool
command.
If you use the -force
parameter, then any services running on the instance stop. Oracle recommends that you reconfigure services to not use the instance to be removed as a preferred or available instance before removing the instance.
Note:
This command is only available with Oracle Clusterware and Oracle RAC.
If you attempt to use this command on an Oracle RAC One Node database, then the command returns an error stating that cannot remove the instance except by removing the database.
Use the srvctl remove instance
command with the following syntax:
srvctl remove instance -db db_unique_name -instance instance_name [-noprompt] [-force]
Table A-81 srvctl remove instance Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the administrator-managed database. |
-instance instance_name
|
Instance name. |
-noprompt |
Suppress prompts |
-force |
Specify this parameter to skip checking that the instance is not running, and remove it even though it is running. This parameter also skips checking that the instance has no running services using it, and causes those services to stop before the instance is removed. |
Removes the configuration of a specific listener or all listeners from Oracle Clusterware or Oracle Restart.
Use the srvctl remove listener
command with the following syntax:
srvctl remove listener [-listener listener_name | -all] [-force]
Table A-82 srvctl remove listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Name of the listener that you want to remove. If you do not specify a listener name, then the listener name defaults to |
-all |
Removes all listener configurations. |
-force |
Specify this parameter to skip checking whether there are other resources that depend on this listener, such as databases, and remove the listener anyway. |
Removes the network configuration. You must have full administrative privileges to run this command. On Linux and UNIX systems, you must be logged in as root
and on Windows systems, you must be logged in as a user with Administrator privileges.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl remove network
command as follows:
srvctl remove network {-netnum network_number | -all} [-force] [-verbose]
Table A-83 srvctl remove network Parameters
Parameter | Description |
---|---|
-netnum network_number
|
Specifies which network to remove |
-all |
Remove all networks |
-force |
Force remove the networks |
-verbose |
Verbose output |
Removes the node application configuration.
Note:
This command is only available with Oracle Clusterware.
You must have full administrative privileges to run this command. On Linux and UNIX systems, you must be logged in as root
and on Windows systems, you must be logged in as a user with Administrator privileges.
Removes Oracle Notification Service from the Oracle Grid Infrastructure home.
Note:
This command is only available with Oracle Restart.
Syntax
srvctl remove scan [-netnum network_number] [-force] [-noprompt]
Parameters
Table A-86 srvctl remove scan Command Parameters
Parameter | Description |
---|---|
-netnum network_number |
The optional network number from which VIPs are obtained. If not specified, the VIPs are obtained from the same default network from which the |
–force |
Removes the SCAN VIPs even though there are SCAN listeners running that are dependent on the SCAN VIPs. |
–noprompt |
Use this parameter to suppress all prompts. |
Usage Notes
If you use the -force
option, then SCAN VIPs that are running are not stopped before the dependent resources are removed, which may require manual cleanup.
Examples
An example of this command is:
$ srvctl remove scan -force
Syntax
srvctl remove scan_listener [-netnum network_number] [-force] [-noprompt]
Parameters
Table A-87 srvctl remove scan_listener Command Parameters
Parameter | Description |
---|---|
-netnum network_number |
The optional network number from which SCAN VIPs are obtained. If you do not specify this parameter, then the SCAN VIPs are obtained from the same default network from which the |
-force |
Removes the SCAN listener without stopping the SCAN listener if it is running. |
–noprompt |
Use this parameter to suppress all prompts. |
Examples
An example of this command is:
$ srvctl remove scan_listener -force
Removes the configuration for a service.
Use the srvctl remove service
command as follows:
srvctl remove service -db db_unique_name -service service_name [-instance instance_name] [-global_override]
Table A-88 srvctl remove service Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-service service_name
|
Service name |
-instance instance_name
|
Instance name of an administrator-managed database. Note: This parameter can be used only for Oracle Clusterware. |
-global_override |
Override value to operate on a global service. This parameter is ignored for a non-global service. |
This command removes the sales
service from all instances of the clustered database named crm
:
$ srvctl remove service -db crm -service sales
The following example removes the sales
service from a specific instance of the crm
clustered database:
$ srvctl remove service -db crm -service sales -instance crm02
Removes a specific server pool. If there are databases or services that depend upon this server pool, then those resources are removed from the server pool first so that the remove server pool operation succeeds.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl remove srvpool
command with the following syntax:
srvctl remove srvpool -serverpool pool_name [-eval] [-verbose]
Table A-89 srvctl remove srvpool Parameters
Parameter | Description |
---|---|
-eval |
Evaluates the effects of removing a server pool without making any changes to the system. |
-verbose |
Display verbose output. |
If you successfully remove the specified server pool, then the CRS daemon may assign its servers to other server pools depending upon their minimum size, maximum size, and importance. The CRS daemon may also return these servers to its Free server pool.
Removes specific VIPs.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl remove vip
command with the following syntax:
srvctl remove vip -vip "vip_name_list" [-force] [-noprompt] [-verbose]
Table A-90 srvctl remove vip Parameters
Parameter | Description |
---|---|
-vip "vip_name_list"
|
A comma-delimited list of VIP names surrounded by double quotation marks ( |
-force |
Force remove |
-noprompt |
Suppress prompts |
-verbose |
Verbose output |
Removes a specific volume.
Note:
This command is only available with Oracle Clusterware.
The volume gets created when you create volumes in Oracle ASM.
See Also:
Oracle Automatic Storage Management Administrator's Guide for more information about creating volumes
Use the srvctl remove volume
command with one of these syntax models:
srvctl remove volume -volume volume_name -diskgroup disk_group_name [-force] srvctl remove volume -device volume_device [-force]
Table A-91 srvctl remove volume Parameters
Parameter | Description |
---|---|
-volume volume_name
|
Specify the name of the volume that you want to remove. This parameter is required. |
-diskgroup disk_group_name
|
Specify the name of the disk group in which the volume that you want to remove resides. |
-device volume_device
|
Specify the path to the file system resource in which the volume that you want to remove resides. |
-force |
Removes the volume even if it is running. |
You must specify a particular volume that you want to remove. You can specify a volume that resides in either a particular disk group or on a particular volume device.
The setenv
command sets values for the environment in the configuration file.
Use setenv
to set environment variables—items such as language or TNS_ADMIN
—for Oracle Clusterware that you would typically set in your profile or session when you manage this database or database instance.
The unsetenv
command unsets values for the environment in the configuration file.
Table A-92 srvctl setenv Summary
Command | Description |
---|---|
Administers cluster database environment configurations |
|
Administers listener environment configurations Note: You cannot use this command to administer SCAN listeners. |
|
Administers node application environment configurations |
|
Administers VIP environment configurations |
Administers cluster database environment configurations.
Use the srvctl setenv database
command with one of these syntax models:
srvctl setenv database -db db_unique_name -envs "name=val[,name=val][...]" srvctl setenv database -db db_unique_name -env "name=val"
Table A-93 srvctl setenv database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-envs "name=val,..." |
Comma-delimited list of name-value pairs of environment variables |
-env "name=val" |
Enables single environment variable to be set to a value that contains commas or other special characters |
Administers listener environment configurations.
Use the srvctl setenv listener
with one of these syntax models:
srvctl setenv listener [-listener listener_name] -envs "name=val[,name=val][...]" srvctl setenv listener [-listener listener_name] -env "name=val"
Table A-94 srvctl setenv listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Name of the listener. If you do not specify this parameter, then the listener name defaults to |
-envs "name=val" |
Comma-delimited list of name-value pairs of environment variables. |
-env "name=val" |
Enables single environment variable to be set to a value that contains commas or other special characters. |
Sets the environment variables for the node application configurations.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl setenv nodeapps
command with the following syntax model:
srvctl setenv nodeapps {-namevals "name=val[,name=val][...]" | -nameval "name=val"} [-viponly] [-gsdonly] [-onsonly] [-verbose]
Table A-95 srvctl setenv nodeapps Parameters
Parameter | Description |
---|---|
-envs "name=val[,name=val] [...]" |
Comma-delimited list of name-value pairs of environment variables |
-env "name=val" |
Enables single environment variable to be set to a value that contains commas or other special characters |
|
Modify only the VIP configuration |
|
Modify only the GSD configuration |
|
Modify only the ONS daemon configuration |
-verbose |
Verbose output |
Administers cluster VIP environment configurations.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl setenv vip
command with the following syntax:
srvctl setenv vip -vip vip_name {-envs "name=val[,name=val,...]" | -env "name=val"} [-verbose]
Table A-96 srvctl setenv vip Parameters
Parameter | Description |
---|---|
-vip vip_name
|
Name of the VIP |
-envs "name=val,..." |
Comma-delimited list of name-value pairs of environment variables |
-env "name=val" |
Enables single environment variable to be set to a value that contains commas or other special characters |
-verbose |
Verbose output |
A summary list of srvctl start
commands and their descriptions.
Starts Oracle Restart or Oracle Clusterware enabled, non-running applications for the database, all or named instances, all or named service names, or node-level applications. For the start
command, and for other operations that use a connect string, if you do not provide a connect string, SRVCTL uses /as sysrac
to perform the operation. To run such operations, the owner of the oracle
binary executables must be a member of the OSRAC group, and users running the commands must also be in the OSRAC group.
Table A-97 srvctl start Summary
Command | Description |
---|---|
srvctl start database |
Starts the cluster database and its instances |
srvctl start diskgroup |
Starts a specified disk group on a number of nodes |
srvctl start home |
Starts Oracle Clusterware-managed or Oracle Restart-managed resources in a specific Oracle home |
srvctl start instance |
Starts the instance |
srvctl start listener |
Starts the specified listener or listeners |
srvctl start nodeapps |
Starts the node applications |
srvctl start ons |
Starts the Oracle Notification Service daemon for Oracle Restart |
srvctl start scan |
Starts all SCAN VIPs |
srvctl start scan_listener |
Starts all SCAN listeners |
srvctl start service |
Starts a service |
srvctl start vip |
Starts a VIP |
srvctl start volume |
Starts an enabled volume |
Starts a cluster database and its enabled instances and all listeners on nodes with database instances. You can disable listeners that should not be started.
Use the srvctl start database
command with the following syntax:
srvctl start database -db db_unique_name [-eval] [-startoption start_options] [-stopconcurrency number_of_instances] [-node node_name]
Table A-98 srvctl start database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. |
-startoption start_options
|
Options for startup command (for example: Notes:
|
[-startconcurrency number_of_instances]
|
Specify a number of database instances to start simultaneously, or specify |
-node node_name
|
The name of the node on which you want to start the database Notes:
|
Start a a specific disk group resource on a number of specified nodes.
Use the srvctl start diskgroup
command with the following syntax:
srvctl start diskgroup -diskgroup diskgrp_name [-node "node_list"]
Table A-99 srvctl start diskgroup Parameters
Parameter | Description |
---|---|
-diskgroup diskgrp_name
|
The Oracle ASM disk group name |
-node "node_list"
|
Comma-delimited list of node names on which to start the disk group resource Note: This parameter can be used only with Oracle Clusterware. |
Starts all the Oracle Restart-managed or Oracle Clusterware-managed resources on the specified Oracle home.
Use the srvctl start home
command with the following syntax:
srvctl start home -oraclehome Oracle_home -statefile state_file -node node_name
Table A-100 srvctl start home Parameters
Parameter | Description |
---|---|
-oraclehome Oracle_home
|
The path to the Oracle home for which you want to start the Oracle Restart or Oracle Clusterware-managed resources. |
-statefile state_file
|
The path name where you want the state file to be written. |
-node node_name
|
The name of the node where the Oracle home resides. Note: This parameter can be used only with Oracle Clusterware. |
Starts instances in the cluster database.
Use the srvctl start instance
command to start database instances, and all listeners on nodes with database instances
Syntax
Use the srvctl start instance
command with one of these syntax models:
srvctl start instance -db db_unique_name -node node_name [-instance "instance_name"] [-startoption start_options]
srvctl start instance -db db_unique_name -instance "inst_name_list" [-startoption start_options]
Parameters
Table A-101 srvctl start instance Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Unique name for the database. |
-node node_name |
The name of a single node. Note: Use this parameter for policy-managed databases. |
-instance { "instance_name" | "inst_name_list" } |
The name of a single instance or a comma-delimited list of instance names Note: Use this parameter for administrator-managed databases. |
-startoption start_options |
Options for startup command, such as Note: For multi-word startup options, such as |
Usage Notes
This command is only available with Oracle Clusterware and Oracle RAC.
If you run this command on an Oracle RAC One Node database, then the command returns an error instructing you to use the database
noun, instead.
Related Topics
Syntax
srvctl start listener [-node node_name] [-listener listener_name]
Parameters
Table A-102 srvctl start listener Command Parameters
Parameter | Description |
---|---|
-node node_name |
Specify a particular node name to start the listener on that node. Note: You can only use this parameter with Oracle Clusterware. |
-listener listener_name |
Specify a particular listener name. Use the If you do not assign a value to this parameter, then SRVCTL starts all known listeners in the cluster. |
Examples
An example of this command is:
$ srvctl start listener -listener LISTENER_LEAF
Starts node-level applications on a node or all nodes in the cluster.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl start nodeapps
command with the following syntax:
srvctl start nodeapps [-node node_name] [-gsdonly] [-adminhelper] [-verbose]
Table A-103 srvctl start nodeapps Parameters
Parameter | Description |
---|---|
-node node_name
|
Node name If you do not specify this parameter, then the utility starts the nodeapps on all active nodes in the cluster. |
-gsdonly |
Starts only GSD instead of all node applications |
|
Starts only an Administrator helper instead of all node applications |
-verbose |
Verbose output |
Starts the Oracle Notification Service daemon.
Note:
This command is only available with Oracle Restart.
Starts all SCAN VIPs, by default, or a specific SCAN VIP, on all nodes or a specific node in the cluster.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl start scan
command with the following syntax:
srvctl start scan [-scannumber ordinal_number] [-node node_name]
Table A-104 srvctl start scan Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies which SCAN VIP you want to start. The range of values you can specify for this parameter is 1 to 3. If you do not specify this parameter, then the utility starts all the SCAN VIPs. |
-node node_name
|
The name of a single node. If you do not specify this parameter, then the utility starts the SCAN VIPs on all nodes in the cluster. |
Starts all SCAN listeners, by default, or a specific listener on all nodes or a specific node in the cluster.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl start scan_listener
command with the following syntax:
srvctl start scan_listener [-node node_name] [-scannumber ordinal_number]
Table A-105 srvctl start scan_listener Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies which SCAN Listener you want to start. The range of values you can specify for this parameter is 1 to 3. If you do not specify this parameter, then the utility starts all the SCAN listeners. |
-node node_name
|
The name of a single node. If you do not specify this parameter, then the utility starts the SCAN listeners on all nodes in the cluster. |
Starts a service or multiple services on a database, pluggable database, or instance.
Syntax
srvctl start service [-db db_unique_name] [-service "services_list" [-pq] | -pdb pluggable_database | -serverpool pool_name] [-node node_name | -instance instance_name] [-global_override] [-startoption start_options] [-eval] [-verbose]
Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify a unique name for the database. |
-service "service_list" |
Specify a service name or a comma-delimited list of service names enclosed in double quotation marks (""). If you do not include this parameter, then SRVCTL starts all of the services for the specified database. Note: All manual service startup must specify the name of the service to be started by the user. |
-pq |
Specify this parameter to restrict the start action to a parallel query service. |
-pdb pluggable_database |
Specify the name of a pluggable database. Optionally, you can specify either the name of a node or the name of an instance to restrict the starting of services to that particular object on the pluggable database. |
-serverpool pool_name |
Alternative to using the |
-node node_name |
Specify the name of a node where the services reside that you want to start. Use this parameter for policy-managed databases. |
-instance instance_name |
Specify the name of an instance where the services reside that you want to start. Use this parameter for administrator-managed databases. |
-global_override |
Override value to operate on a global service. Use this parameter only with global services; this parameter is ignored if specified for a non-global service. |
-startoption start_options |
Specify startup options used when service startup requires starting a database instance. Options include Note: For multi-word startup options, such as |
–verbose |
Display verbose output. |
Usage Notes
The srvctl start service
command will fail if you attempt to start a service that is already running.
The srvctl start service
command will fail if you attempt to start a service on an instance, if that service is already running on its maximum number of instances, that is, its number of preferred instances.
You can move a service or change the status of a service on an instance with the srvctl modify service
and srvctl relocate service
commands.
Examples
The following example starts all services on a specific database:
$ srvctl start database -db myDB
The following examples start a list of services (optionally restricted to a parallel query services in the latter example) regardless of the pluggable database on which they may reside:
$ srvctl start database -db myDB -service "myServ01,myServ02" $ srvctl start database -db myDB -service "myServ01,myServ02" -pq
The following example starts all services in a given server pool:
$ srvctl start database -db myDB -serverpool myServerPool
The following examples start all services on a given pluggable database, optionally restricted to a single node or a single instance in the latter two examples, repectively:
$ srvctl start service -db myDB -pdb myPDB1 $ srvctl start service -db myDB -pdb myPDB1 -node myRACNode01 $ srvctl start service -db myDB -pdb myPDB1 -instance myDB01
The following example starts all services, for a given database, on a given instance (for all pluggable databases):
$ srvctl start service -db myDB -instance myDB01
The following example start all services for a given database on a given node (for all pluggable databases):
$ srvctl start service -db myDB -node myRACNode01
The following examples start a list of services on a given node or given instance:
$ srvctl start service -db myDB -service "myService01,myService02" -node myRACNode01 $ srvctl start service -db myDB -service "myService01,myService02" -instance myDB01
Starts a specific VIP or a VIP on a specific node.
Note:
This command is only available with Oracle Clusterware.
Starts a specific, enabled volume.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl start volume
command with the following syntax:
srvctl start volume {-volume volume_name -diskgroup disk_group_name | -device volume_device} [-node node_list]
Table A-107 srvctl start volume Parameters
Parameter | Description |
---|---|
-volume volume_name
|
Specify the name of the volume that you want to start. This parameter is required. |
-diskgroup disk_group_name
|
Specify the name of the disk group in which the volume that you want to start resides. |
-device volume_device
|
Specify the path to the volume device that you want to start. |
-node node_list
|
Specify a comma-delimited list of node names where volumes that you want to start reside. |
The srvctl start volume
command does not create a volume service. Provided that the volume already exists and the volume resource is enabled, SRVCTL attempts to start it. If the volume exists but the resource is disabled, then srvctl start volume
returns an error.
Displays the current state of a named database, instances, services, disk group, listener, node application, or other resource managed by Oracle Clusterware.
If you use the -verbose
parameter with the status command, then SRVCTL displays the INTERNAL_STATE
, which indicates actions in progress by Oracle Clusterware, such as starting, stopping, or cleaning. If the internal state is STABLE, then the -verbose
parameter displays nothing because this is the normal state. Additionally, the -verbose
parameter displays STATE_DETAILS
, which may indicate additional information provided by the resource about why it is in its current state
Table A-108 srvctl status Summary
Command | Description |
---|---|
Displays the status of a database |
|
Displays the status of a specific disk group on a number of nodes |
|
Displays the status of the resources associated with the specified Oracle home |
|
Displays the status of a instance |
|
Displays the status of a listener resource |
|
Displays the status of node applications |
|
Displays the status of Oracle Notification Service |
|
Displays the status of SCAN VIPs |
|
Displays the status of SCAN listeners |
|
Displays the status of servers |
|
Displays the status of services |
|
Displays the status of server pools |
|
Displays the status of VIPs |
|
Displays the status of volumes |
This command displays the current state of the of the database.
Syntax
srvctl status database {-db db_unique_name {[-serverpool serverpool_name] | [-sid] [-home]} | -serverpool serverpool_name | -thisversion | -thishome} [-force] [-detail] [-verbose]
Parameters
Table A-109 srvctl status database Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify a unique name for the database. |
-serverpool serverpool_name |
Optionally, you can specify a server pool that SRVCTL will display information on nodes contained within. |
–sid |
Use this parameter to display the SID of the Oracle instance running on this node. |
–home |
Use this parameter to display the Oracle home of the specified database. |
-thisversion |
Use this parameter to display the status of databases that are of the same Oracle product version as SRVCTL. |
-thishome |
Use this parameter to display the status of databases that are configured in this Oracle home. |
-force |
Include disabled applications |
–detail |
Use this parameter to display detailed database status information. |
-verbose |
Displays If the Instance {0} is being started If the Instance {0} is being cleaned up |
Usage Notes
The output of this command includes information on the Oracle ASM or Oracle ASM IOServer instance for each running instance of the database.
Examples
This command displays output similar to the following:
$ srvctl status database -db db00 -detail
Instance {0} is connected to ASM instance {1}
Instance {0} is connected to ASM I/O server instance {1}
Displays the status of a specific disk group on a number of specified nodes.
Use the srvctl status diskgroup
command with the following syntax:
srvctl status diskgroup -diskgroup diskgroup_name [-node "node_list"] [-detail] [-verbose]
Table A-110 srvctl status diskgroup Parameters
Parameter | Description |
---|---|
-diskgroup diskgroup_name
|
The Oracle ASM disk group name |
-node node_list
|
Comma-delimited list of node names on which to check status of the disk group Note: This parameter can be used only with Oracle Clusterware. |
-detail |
Display detailed status information for the disk group |
-verbose |
Displays verbose output. |
Displays the status of all the Oracle Restart-managed or Oracle Clusterware-managed resources for the specified Oracle home.
Use the srvctl status home
command with the following syntax:
srvctl status home -oraclehome Oracle_home -statefile state_file -node node_name
Table A-111 srvctl status home Parameters
Parameter | Description |
---|---|
-oraclehome Oracle_home
|
The path to the Oracle home for which you want to start the Oracle Restart or Oracle Clusterware-managed resources |
-statefile state_file
|
The path name for the text file that holds the state information generated by this command. |
-node node_name
|
The name of the node where the Oracle home resides. Note: This parameter is required and can be used only with Oracle Clusterware. |
The srvctly status instance
command displays the status of Oracle database instances.
The output of this command includes information about the Oracle ASM or Oracle ASM IOServer instance for each running instance of the database.
Syntax
srvctl status instance -db db_unique_name {-node node_name | -instance "instance_name_list"} [-detail] [-force] [-verbose]
Parameters
Table A-112 srvctl status instance Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Unique name for the database. |
-node node_name |
Node name. Note: Use this parameter for policy-managed databases. |
-instance "inst_name_list" |
Comma-delimited list of instance names. Note: Use this parameter for administrator-managed databases. |
-detail |
Use this parameter to display detailed status information. |
-force |
Include disabled applications |
-verbose |
Displays verbose output |
Example
This command displays output similar to the following:
$ srvctl status instance -db db00 -node node10 -verbose
Instance db0010 running on node node10 is connected to ASM I/O Server instance +IOS1
Displays the status of listener resources.
Use the srvctl status listener
command with the following syntax:
srvctl status listener [-listener listener_name] [-node node_name] [-verbose]
Table A-113 srvctl status listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Name of a listener. If you do not specify this parameter, then the listener name defaults to |
-node node_name
|
Name of a cluster node. Note: This parameter can be used only for Oracle Clusterware. |
-verbose |
Displays verbose output. |
Displays the status of node applications.
Note:
This command is only available with Oracle Clusterware.
Displays the current state of the Oracle Notification Service daemon.
Note:
This command is only available with Oracle Restart.
Displays the status for all SCAN VIPs, by default, or a specific SCAN VIP.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl status scan
command with the following syntax:
srvctl status scan [-scannumber ordinal_number] [-verbose]
Table A-114 srvctl status scan Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
Specify an ordinal number that identifies a specific SCAN VIP. The range of values you can specify for this parameter is 1 to 3. If you do not specify this parameter, then the utility displays the status of all SCAN VIPs in the cluster. |
-verbose |
Displays verbose output. |
Displays the status for all SCAN listeners, by default, or a specific listener.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl status scan_listener
command with the following syntax:
srvctl status scan_listener [-scannumber ordinal_number] [-verbose]
Table A-115 srvctl status scan_listener Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
Specify an ordinal number that identifies a specific SCAN VIP. The range of values you can specify for this parameter is 1 to 3. If you do not specify this parameter, then the utility displays the status of all SCAN VIPs in the cluster. |
-verbose |
Displays verbose output. |
Displays the status of a service.
For Oracle RAC One Node databases, if there is an online database relocation in process, then the srvctl status service
command displays the source and destination nodes and the status of the relocation, whether it is active or failed.
Use the srvctl status service
command with the following syntax:
srvctl status service -db db_unique_name [-service "service_name_list"] [-force] [-verbose]
Table A-117 srvctl status service Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-services "service_name_list"
|
Comma-delimited list of service names. If you do not specify this parameter, then the utility lists the status of all services for the specified database. |
-force |
Include disabled applications |
-verbose |
Displays verbose output. |
Displays server pool names, number of servers in server pools, and, optionally, the names of the servers in the server pools.
Note:
This command is only available with Oracle Clusterware.
If you include the -detail
parameter but do not specify a specific server pool with the -serverpool
parameter, then the output of this command includes the names of servers that are currently assigned to each server pool.
If you use the -serverpool
parameter to specify a server pool, then the output for this command includes the server pool name and number of servers in the server pool (and, optionally, the server names) for the specified server pool.
Displays status for a specific VIP or a VIP on a specific node.
Note:
This command is only available with Oracle Clusterware.
Displays the status of a specific volume or all volumes.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl status volume
command with the following syntax:
srvctl status volume [-device volume_device] [-volume volume_name] [-diskgroup disk_group_name] [-node "node_list"]
Table A-120 srvctl status volume Parameters
Parameter | Description |
---|---|
-device volume_device
|
Specify the path to the volume device for which you want to display the status. |
-volume volume_name
|
Specify the name of the volume for which you want to view the status. |
-diskgroup disk_group_name
|
Specify the name of the disk group in which the volume resides for which you want to display the status. |
-node "node_list"
|
Specify a comma-delimited list of node names where volumes for which you want to view the status reside. |
If you do not specify any of the optional parameters, then SRVCTL displays the status for all volumes.
If you specify only the -volume
parameter, then SRVCTL displays the status for the volume that you specify.
If you specify only the -diskgroup
parameter, then SRVCTL displays the status for the volumes that reside in the disk group that you specify.
If you specify only the -device
parameter, then SRVCTL displays the status for the volume device that you specify.
If you specify the -diskgroup
and -device
parameters, then SRVCTL displays the status for the volume device in the disk group that you specify.
If you specify the -node
parameter, then SRVCTL displays the status of the volumes that reside on the nodes you list.
The srvctl status volume
command displays information similar to the following:
$ srvctl status volume –volume vol1 Volume vol1 of diskgroup diskgrp1 for device volume_device_path1 is enabled Volume vol1 of diskgroup diskgrp1 for device volume_device_path1 is running
In the preceding example, SRVCTL performs a status query on all nodes because the -node
parameter is not specified.
$ srvctl status volume Volume vol1 of diskgroup diskgrp for device volume_device_path1 is enabled Volume vol1 of diskgroup diskgrp for device volume_device_path1 is running Volume vol2 of diskgroup diskgrp for device volume_device_path2 is enabled Volume vol2 of diskgroup diskgrp for device volume_device_path2 is running
In the preceding example, SRVCTL displays the status of all registered volumes because the no parameter is specified.
Stops the Oracle Clusterware applications for the database, all or named instances, all or named service names, listeners, or node-level application resources.
Only the Oracle Clusterware applications that are enabled, starting or running are stopped. Objects running outside of Oracle Clusterware are not stopped.
You should disable an object that you intend to remain stopped after you issue a srvctl stop
command. See the srvctl disable
command.
Note:
If the object is stopped and is not disabled, then it can restart as the result of another planned operation. The object does not restart because of a failure. Oracle recommends that you disable any object that should remain stopped after you issue a stop
command.
When you use the -force
parameter to stop dependent applications and the object, then those dependent applications do not restart when the object is later restarted or after the node fails. You must restart the dependent applications, manually, except for services with AUTOMATIC management policy when a database is stopped.
Table A-121 srvctl stop Summary
Command | Description |
---|---|
srvctl stop database |
Stops the cluster database |
srvctl stop diskgroup |
Stops a specific disk group on a specified number of nodes |
srvctl stop home |
Stops the resources for the specified Oracle home |
srvctl stop instance |
Stops the instance |
srvctl stop listener |
Stops the specified listener or listeners |
srvctl stop nodeapps |
Stops the node-level applications |
srvctl stop ons |
Stops Oracle Notification Service |
srvctl stop scan |
Stops all SCAN VIPs |
srvctl stop scan_listener |
Stops all SCAN listeners |
srvctl stop service |
Stops the service |
srvctl stop vip |
Stops VIP resources |
srvctl stop volume |
Stops a volume device |
The srvctl stop database
command stops a database, its instances, and its services.
Syntax
srvctl stop database -db db_unique_name [-stopoption stop_options] [-stopconcurrency number_of_instances] [-drain_timeout timeout] [-eval] [-force] [-verbose]
Parameters
Table A-122 srvctl stop database Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name for the database that you want to stop. |
-stopoption stop_options |
Specify options for the shutdown command, such as |
-stopconcurrency number_of_instances |
Specify a number of database instances to stop simultaneously, or specify |
-drain_timeout timeout |
The time, in seconds, allowed to complete the resource draining action. By default, this parameter is not set. You can specify 0 or any positive integer. An empty string unsets the parameter. If you specify zero, then the agent will perform the actions related to service draining, immediately. Drain timeout is the maximum time the service waits before exiting (in case of |
-eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. |
-force |
This parameter stops the database, its instances, its services, and any resources that depend on those services. |
—verbose |
Display verbose output. |
Example
The following command example stops a database and includes verbose output:
$ srvctl stop database -db db1 -drain_timeout 50 -verbose
Draining in progress on services svc1,svc2.
Drain complete on services svc1.
Draining in progress on services svc2.
Draining in progress on services svc2.
Drain complete on services svc2.
Use this command to stop a specific disk group resource on a number of specified nodes.
Use the srvctl stop diskgroup
command with the following syntax:
srvctl stop diskgroup -diskgroup diskgroup_name [-node "node_list"] [-force]
Table A-123 srvctl stop diskgroup Parameters
Parameter | Description |
---|---|
-diskgroup diskgroup_name
|
The Oracle ASM disk group name |
-node "node_list"
|
Comma-delimited list of node names on which to stop the disk group resource Note: This parameter can be used only with Oracle Clusterware. |
|
This parameter does not stop the databases that depend on the disk group you are stopping, but instead performs a forceful dismount that may cause those databases to fail. |
Stops all the Oracle Restart-managed or Oracle Clusterware-managed resources that run from the specified Oracle home.
Use the srvctl stop home
command with the following syntax:
srvctl stop home -oraclehome Oracle_home -statefile state_file -node node_name [-stopoption stop_options] [-force]
Table A-124 srvctl stop home Parameters
Parameter | Description |
---|---|
-oraclehome Oracle_home
|
The path to the Oracle home for which you want to start the Oracle Restart or Oracle Clusterware-managed resources. Note: The path to the Oracle home you specify must be the same version as the Oracle home from which you invoke SRVCTL. |
-statefile state_file
|
The path name where you want the state file to be written. |
-node node_name
|
The name of the node where the Oracle home resides. Note: This parameter can be used only with Oracle Clusterware. |
-stopoption stop_options
|
Shutdown options for the database, such as See Also: SQL*Plus User's Guide and Reference for more information about shutdown options |
-force |
Stop the resources even if errors are reported. |
The srvctl stop instance
command stops instances and stops any services running on specified instances.
Syntax
srvctl stop instance -db db_unique_name {-node node_name | -instance "instance_name_list"} [-stopoption stop_options] [-drain_timeout timeout] [-force] [-failover] [-verbose]
Parameters
Table A-125 srvctl stop instance Command Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name for the database for which you want to stop an instance. |
-node node_name |
Specify the name of a single node. Note: Use this parameter for policy-managed databases. |
-instance "instance_name_list" |
Specify a comma-delimited list of instance names enclosed in double quotation marks ( Note: Use this parameter for administrator-managed databases. |
-stopoption stop_options |
Specify options for the shutdown command, such as |
-drain_timeout timeout |
The time, in seconds, allowed to complete the resource draining action. By default, this parameter is not set. You can specify 0 or any positive integer. An empty string unsets the parameter. If you specify zero, then the agent will perform the actions related to service draining, immediately. Drain timeout is the maximum time the service waits before exiting (in case of |
-force |
Use this parameter to forcibly stop the instance and any running services if the |
–failover |
If you specify |
-verbose |
Display verbose output. |
Usage Notes
If you run this command on an Oracle RAC One Node database, then the command returns an error instructing you to use the srvctl stop database
command, instead.
Example
The following command example stops instances in an administrator-managed database and includes verbose output:
$ srvctl stop instance -db db1 -instance inst1 -drain_timeout 50 -verbose
Draining in progress on services svc1
Draining in progress on services svc1
Drain complete on services svc1
Related Topics
You can also use this command to stop a listener on a non-cluster database from the non-cluster database home. However, SRVCTL does not accept the -node
parameter when run from a non-cluster database home.
Syntax
srvctl stop listener [-listener listener_name] [-node node_name] [-force]
Parameters
Table A-126 srvctl stop listener Command Parameters
Parameter | Description |
---|---|
-listener listener_name |
Specify the name of the listener you want to stop. If you do not assign a value to this parameter, then SRVCTL stops all known listeners in the cluster. |
-node node_name |
Optionally, you can specify the name of a single node on which a particular listener runs. Note: You can only use this parameter with Oracle Clusterware. |
–force |
Forcibly stop the listener. |
Examples
The following command stops all listeners on the node mynode1
:
$ srvctl stop listener -node mynode1
Stops node-level applications on a node in the cluster.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl stop nodeapps
command with the following syntax:
srvctl stop nodeapps [-node node_name] [-gsdonly] [-adminhelper] [-force] [-relocate] [-verbose]
Table A-127 srvctl stop nodeapps Parameters
Parameter | Description |
---|---|
-node node_name
|
Node name If you do not specify this parameter, then the utility stops the node applications (nodeapps) on all active nodes in the cluster. |
-gsdonly |
Stops only the GSD instead of all nodeapps |
|
Stops only the Administrator helper instead of all nodeapps |
-relocate |
Relocate VIP and possibly dependent services Note: If you specify this parameter, then you must also specify the |
-force |
Force stop |
-verbose |
Display verbose output |
Stops the Oracle Notification Service daemon.
Note:
This command is only available with Oracle Restart.
Stops all SCAN VIPs, by default, that are running or in starting state, or stops a specific SCAN VIP identified by ordinal_number
.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl stop scan
command with the following syntax:
srvctl stop scan [-scannumber ordinal_number] [-force]
Table A-128 srvctl stop scan Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies which SCAN VIP you want to stop. The range of values you can specify for this parameter is 1 to 3. If you do not specify this parameter, then the utility stops all the SCAN VIPs. |
-force |
Force stop of the SCAN VIP. |
Stops all SCAN listeners, by default, that are in a running or starting state, or a specific listener identified by ordinal_number
.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl start scan_listener
command with the following syntax:
srvctl stop scan_listener [-scannumber ordinal_number] [-force]
Table A-129 srvctl stop scan_listener Parameters
Parameter | Description |
---|---|
-scannumber ordinal_number
|
An ordinal number that identifies which SCAN listener to stop. You can specify values of 1, 2, or 3 for this parameter. If you do not specify this parameter, then the utility stops all the SCAN listeners. |
-force |
Force stop of the SCAN listener. |
The srvctl stop service
command stops one or more services globally across the cluster database, or on the specified instance.
Syntax
srvctl stop service {-node node_name | -db db_unique_name [-pq] [-pdb pluggable_database | -service "service_list" [-eval]] [-node node_name | -instance instance_name |} -serverpool pool_name] [-stopoption IMMEDIATE|TRANSACTIONAL|NONE] [-drain_timeout timeout] [-wait {YES | NO}] [-force [-noreplay]] [-global_override] [-verbose]
Parameters
Table A-130 srvctl stop service Command Parameters
Parameter | Description |
---|---|
-node node_name |
Optionally, you can specify the name of the node on which you want to stop services. Use this parameter to stop all services on a specific node. Use this parameter for policy-managed databases. |
-db db_unique_name |
Specify a unique name for the database. |
-pdb pluggable_database |
Alternatively, use this parameter to stop services running on a specific pluggable database. |
-service "service_list" |
Specify a particular service or a comma-delimited list of service names enclosed in double quotation marks ( If you do not provide a service name list, then SRVCTL stops all services on the database or on a specific instance. |
-pq |
Specify this parameter to restrict the stop action to a parallel query service. |
-instance instance_name |
Optionally, you can specify the name of the instance for which you want to stop services. Use this parameter for administrator-managed databases. |
-serverpool pool_name |
Optionally, you can specify the name of the server pool that contains the service you want to stop. |
—eval |
Use this parameter to hypothetically evaluate the impact of the command on the system. |
-stopoption IMMEDIATE|TRANSACTIONAL|NONE |
Optionally, you can specify the mode in which the service is stopped. If you set this parameter on the service, then this value is used if you do not set the value on the command line.
If you specify The default is taken from the service setting, when specified on the service. Otherwise the default is |
-drain_timeout timeout |
Specify the time, in seconds, allowed for resource draining to be completed. Accepted values are an empty string (""), 0, or any positive integer. The default value is an empty string, which means that this parameter is not set. If it is set to 0, then draining occurs, immediately. The draining period is intended for planned maintenance operations. During the draining period, all current client requests are processed, but new requests are not accepted. When set on the service this value is used when the command line value is not set. |
-wait YES | NO |
Choose |
-force [-noreplay] |
Force SRVCTL to stop the service; this causes SRVCTL to disconnect all of the sessions using the stop option you specify (IMMEDIATE or TRANSACTIONAL), requiring the sessions using the service to reconnect and then connect to another instance. Notes:
|
-global_override |
Override value to operate on a global service. SRVCTL ignores this parameter if the service is not a global service. |
-verbose |
Use this parameter to display verbose output. |
Examples
The following example command stops services running on database db1
:
$ srvctl stop service -db db1 -drain_timeout 60 -force - stopoption immediate -verbose
Stops a specific VIP or all VIPs on a specific node, including any VIPs that were relocated due to a failover.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl stop vip
command with the following syntax:
srvctl stop vip {-node node_name | -vip vip_name} [-force] [-relocate] [-verbose]
Table A-131 srvctl stop vip Parameters
Parameter | Description |
---|---|
-node node_name
|
This parameter stops all VIPs on a specific node, including failed-over VIPs |
-vip vip_name
|
This parameter stops a specific VIP |
-force |
Force SRVCTL to stop the VIP |
-relocate |
Relocate VIP Note: You must use the |
-verbose |
Verbose output |
Stops a specific, running volume.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl stop volume
command with the following syntax:
srvctl stop volume {-volume volume_name -diskgroup disk_group_name | -device volume_device} [-node "node_list"]
Table A-132 srvctl stop volume Parameters
Parameter | Description |
---|---|
-volume volume_name
|
Specify the name of the volume to stop. |
-diskgroup disk_grp_name
|
Specify the name of the disk group in which the volume to stop resides. |
-device volume_device
|
Specify the path to the volume device to stop. |
-node "node_list"
|
Specify a comma-delimited list of node names where volumes to stop reside. |
The srvctl stop volume
command attempts to stop (disable) the volume but it does not disable the resource or remove the volume from Oracle ASM.
The unsetenv
command unsets values for the environment in the configuration file.
It allows users to administer environment configuration for the objects.
Table A-133 srvctl unsetenv Command Summary
Command | Description |
---|---|
Unsets the value for one or more cluster database environment variables |
|
Unsets the value for one or more listener environment variables. |
|
Unsets the value for one or more node application environment variables |
|
Unsets the value for one or more VIP environment variables |
Unsets the cluster database environment configurations.
Use the srvctl unsetenv database
command as follows:
srvctl unsetenv database -db db_unique_name -envs "name_list"
Table A-134 srvctl unsetenv database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-envs "name_list"
|
Comma-delimited list of environment variable names enclosed in double quotation marks ( |
Unsets the environment configuration for a listener.
Use the srvctl unsetenv listener
command as follows:
srvctl unsetenv listener [-listener listener_name] -envs "name_list"
Table A-135 srvctl unsetenv listener Parameters
Parameter | Description |
---|---|
-listener listener_name
|
Name of the listener. If you do not specify this parameter, then the name of the listener defaults to |
-envs "name_list"
|
A comma-delimited list of names of environment variables |
Unsets the environment configuration for the node applications.
Note:
This command is only available with Oracle Clusterware.
Use the srvctl unsetenv nodeapps
command as follows:
srvctl unsetenv nodeapps -envs "name_list" [-viponly] [-gsdonly] [-onsonly] [-verbose]
Table A-136 srvctl unsetenv nodeapps Parameters
Parameter | Description |
---|---|
-envs "name_list"
|
Comma-delimited list of the names of environment variables enclosed in double quotation marks ( |
-viponly |
Modify only the VIP configuration instead of all nodeapps |
-gsdonly |
Modify only the GSD configuration instead of all nodeapps |
-onsonly |
Modify only the ONS daemon configuration instead of all nodeapps |
-verbose |
Display verbose output |
Unsets the environment configuration for the specified cluster VIP.
Use the srvctl unsetenv vip
command as follows:
srvctl unsetenv vip -vip "vip_name_list" -envs "name_list" [-verbose]
Table A-137 srvctl unsetenv vip Parameters
Parameter | Description |
---|---|
-vip "vip_name_list"
|
Comma-delimited list of VIP names enclosed in double quotation marks ( |
-envs "name_list"
|
Comma-delimited list of environment variable names enclosed in double quotation marks ( |
-verbose |
Display verbose output |
The srvctl update
command requests that the specified running object use the new configuration information stored in the OCR.
Table A-138 srvctl update Command Summary
Command | Description |
---|---|
Updates the specified database to use the new listener endpoints |
|
Updates the configuration for GNS |
|
Updates the listener to listen on the new endpoints |
|
Update the SCAN listeners to listen on the new endpoints. |
Updates the specified database to use the new listener endpoints.
Note:
This command is only available with Oracle Clusterware.
Syntax and Parameters
Use the srvctl update database
command with the following syntax:
srvctl update database -db db_unique_name
Use the -db
parameter to specify the unique name of the database to update.
Use the srvctl update gns
command to modify a Grid Naming Service (GNS) instance.
Note:
This command is only available with Oracle Clusterware.
Syntax and Parameters
Use the srvctl update gns
command with one of these syntax models:
srvctl update gns -advertise name -address ip_address [-timetolive time_to_live] [-verbose] srvctl update gns -delete name [-address address] [-verbose] srvctl update gns -alias alias -name name [-timetolive time_to_live] [-verbose] srvctl update gns -deletealias alias [-verbose] srvctl update gns -createsrv service -target target -protocol protocol [-weight weight] [-priority priority] [-port port_number] [-timetolive time_to_live] [-instance instance_name] [-verbose] srvctl update gns -deletesrv service_name -target target -protocol protocol [-verbose] srvctl update gns -createtxt name -target target [-timetolive time_to_live] [-namettl name_ttl] [-verbose] srvctl update gns -deletetxt name -target target [-verbose] srvctl update gns -createptr name -target target [-timetolive time_to_live] [-namettl name_ttl] [-verbose] srvctl update gns -deleteptr name -target target [-verbose]
Table A-139 srvctl update gns Parameters
Parameter | Description |
---|---|
-advertise name
|
Advertise a name through GNS |
-address ip_address
|
The IP address for an advertised name |
-timetolive time_to_live
|
Optionally, you can specify, in seconds, an amount of time for the record to live |
-delete name
|
Remove the advertisement of a name from GNS |
-alias alias
|
Create an alias for an advertised name |
-name name
|
The advertised name associated with the alias |
-deletalias alias
|
Delete an alias |
-createsrv service
|
Create a service that is described by the record |
-target target
|
Specify a name that is associated with the service |
-protocol protocol
|
Specify which protocol is used to connect to the service |
-weight weight
|
Specify the weight of the record |
-priority priority
|
Specify the priority of the record, with a value ranging from 0 to 65535 |
-port port_number
|
Specify the port number used to connect to the service, with a value ranging from 0 to 65535 |
-instance instance_name
|
Instance name of service |
-deletesrv service
|
Name of the service record to be deleted |
-createtxt name
|
Add a text (TXT) record using the specified name |
-namettl name_ttl
|
Time to live for the name, specified in seconds |
-deletetxt name
|
Delete a text (TXT) record of the specified name |
-createptr name
|
Add a pointer (PTR) record for the specified name |
-deleteptr name
|
Delete a pointer (PTR) record for the specified name |
You must be logged in as the root
user on Linux and UNIX platforms, or as an Administrator user on Windows platforms, to run this command.
The srvctl update instance
command changes to which Oracle ASM instance or Oracle ASM IOServer the instance connects, or it changes the open mode of the instance.
Syntax
srvctl update instance -db db_unique_name [-instance "instance_name_list" | -node "node_list"] [-startoption start_options] [-targetinstance instance_name]
Parameters
Parameter | Description |
---|---|
-db db_unique_name |
Specify the unique name of the database. |
-instance "instance_name_list" | -node "node_list" |
Optionally, you can specify a comma-delimited list of instance names or node names that you want to update. If you specify a list of node names, then SRVCTL udpates the instances running on those specific nodes. |
-startoption start_options |
Optionally, you can specify startup options for the database, such as |
-targetinstance instance_name |
Optionally, you can specify a target Oracle ASM or Oracle ASM IOServer instance. Use double quotation marks ( |
Examples
An example of this command is:
$ srvctl update instance -db qdb -node rws1270051 -targetinstance +IOS2 relocate qdb instance on rws1270050 to IOServer instance +IOS2
The srvctl upgrade database
command upgrades the configuration of a database and all of its services to the version of the database home from where this command is run.
Use the srvctl upgrade database
command as follows:
srvctl upgrade database -db db_unique_name -oraclehome Oracle_home
Table A-140 srvctl upgrade database Parameters
Parameter | Description |
---|---|
-db db_unique_name
|
Unique name for the database |
-oraclehome Oracle_home
|
The path to the |