Please enter search query.
Search <book_title>...
InfoScale™ 9.0 Cluster Server Implementation Guide for Oracle - Windows
Last Published:
2025-04-13
Product(s):
InfoScale & Storage Foundation (9.0)
Platform: Windows
- Introducing the VCS agents for Oracle and NetApp
- Installing and configuring VCS
- Installing and configuring Oracle
- Prerequisites for installing Oracle
- Managing storage using Windows Logical Disk Manager
- Managing storage using NetApp filer
- Configuring Oracle on the first node
- Associating the database with the listener
- Configuring the Oracle database
- Configuring the Oracle service group
- Administering the Oracle service group
- Troubleshooting
- Appendix A. Resource type definitions
- Appendix B. Sample configuration
- Appendix C. Oracle Enterprise Manager 10g Grid Control with VCS
- Making the additional agent highly available
Modifying the SPFILE
VCS requires a customized version of the SPFILE. Edit the SPFILE as instructed below.
Ensure that the Oracle database is mounted and is running. Make a backup copy of the SPFILE before you proceed.
To modify the SPFILE
- Log on to the Oracle database as administrator and edit the dispatchers parameter by adding or editing the HOST parameter.
Type the following commands on the command prompt:
C:\>sqlplus "/as sysdba" C:\>alter system set dispatchers = '(ADDRESS=(Protocol=TCP)(HOST= virtual_IP_address) (other entries) )' scope=spfile;
The edited dispatchers parameter should look like:
dispatchers = '(ADDRESS=(Protocol=TCP)(HOST=virtual_IP_address) (other entries))'
The variable virtual_IP_address represents the virtual IP address that you specified for the IP (in case of IPv4) or IPv6 (in case of IPv6) resource in the temporary service group.
For example:
dispatchers = '(ADDRESS=(Protocol=TCP) (HOST=10.212.60.102) (SERVICE=Data1XDB)'
- Configure the attribute remote_login_passwordfile.
Type the following command on the command prompt:
C:\>alter system set remote_login_passwordfile='NONE' scope=spfile;
Arctera recommends setting the attribute to NONE so that the database uses the operating system authentication and the configuration does not require a password file.
- Restart the database service.