Sponsored Content
Operating Systems Solaris Steps to configure Oracle 10g on VCS Post 302257141 by sparcguy on Tuesday 11th of November 2008 12:48:11 PM
Old 11-11-2008
Some general ideas.

Well firstly before you cluster anything make sure your application can run on it's own without any problems ie make sure it's not buggy or crashes often, if it does crashes or problematic never ever cluster it, resolve all the problems first before clustering.

before clustering test out the sequence manually

ifconfig ce0:1 plumb
ifconfig ce0:1 xxx.xxx.xxx.xxx netmask 255.255.255.0 <<<--- usually the clusterservice group IP is also the IP that oracle listener uses

vxdg import <diskgroup>
vxvol -g <diskgroup> startall
mount /dev/vx/dsk/cXtXdXsX /oracle
mount /dev/vx/dsk/cXtXdXsX /oracle/u01
mount /dev/vx/dsk/cXtXdXsX /oracle/u02
mount /dev/vx/dsk/cXtXdXsX /oracle/u03
<oracle database starts with dbstart>
<listener starts lsnrctl start>

stop the application and umount in reverse
<listener stop lsnrctl stop>
<dbshut>
umount /dev/vx/dsk/cXtXdXsX /oracle/u03
umount /dev/vx/dsk/cXtXdXsX /oracle/u02
umount /dev/vx/dsk/cXtXdXsX /oracle/u01
umount /dev/vx/dsk/cXtXdXsX /oracle
vxvol -g <diskgroup> stopall
vxdg deport <diskgroup>
ifconfig ce0:1 down

Then on the other host try to bring up manually also using the sequence, make sure everything working without problem before you cluster anything.

I have very limited knowledge, some years back I migrated 4 node cluster into 2 node cluster merging a total of 38 oracle instances, how I did it was by a lot of pain and much trial and error and many change window (so painful) and I did it mostly by vi and editing the main.cf file, you can use vcs command line or easier use the gui. if you want to use command line because you dun have a console then better start checking up support.veritas.com, if you have a lot of instances to add then I feel it is easier to spend some time studying the main.cf and how you can go about modifying it to suite your needs.

then hacf -verify to check your main.cf script ( as long as the cf file check out without errors after modification it's fine)

Because everytime vcs starts it will read main.cf and automatically convert into main.cmd which contains vcs commands.

but if you still interested in command line, then here are some ideas.

How to add a new diskgroup service group to VCS.


best of luck

Last edited by sparcguy; 11-11-2008 at 01:58 PM..
 

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

oracle 10g

I have download Oracle 10g for Solaris and I have configurate environment than I will start runInstaller and I have a messege that my version of solaris is not 5.7 , 5.8 and 5,9 I have 5.10 Solaris version what I shoud do I have download most actuall Oracle databases. (4 Replies)
Discussion started by: Deux
4 Replies

2. Solaris

Oracle 10G installation on Solaris 9

Hi Guys, I need to install Oracle 10g on solaris 9, the server is not in cluster. The server is already running applications like OVO and Weblogic. Can you guys please tell me the steps to do this and what paramaters ( Kernal and otherwise) which need to be modified? There will be about 100... (2 Replies)
Discussion started by: nitinkgoud
2 Replies

3. UNIX for Dummies Questions & Answers

Steps to configure sendmail to receive e-mails

Hi Unix Gurus, Please help me out here. Please tell me the steps to conigure sendmail to receive emails (same way we configure outlook client in windows)? Thanks in advance. -Dejavu (1 Reply)
Discussion started by: DejaVu
1 Replies

4. AIX

oracle 10g on AIX 5

hi can anyone help me by telling step by stem oracle10g installation in AIX 5 . Munir mondolsoft Bangladesh (3 Replies)
Discussion started by: dbamunir
3 Replies

5. Solaris

How can i install oracle 10g on x86

Please guide me to install oracle 10g in x86 machine running solaris10. I tried the method that is distributed with the Oracle cd, but i finds it to be too complicated for me to complete. Please help. (2 Replies)
Discussion started by: Sesha
2 Replies

6. Programming

Oracle 10g tables dumps

HI All, I am using Oracle 10g . Want to take dumps(.dmp log) from many tables with where clause having same schema. ex : TB_MTH_ORA_CAB "WHERE TRUNC(dw_entry_dt )= TO_DATE('01-JAN-2011')" TB_AM_AT_OSS_MAT "WHERE TRUNC(dw_entry_date )>= TO_DATE('01-JAN-2011') AND TRUNC(dw_entry_date )<=... (4 Replies)
Discussion started by: Perlbaby
4 Replies

7. AIX

Oracle 10g on AIX7

Hi, anyone know if Oracle Database 10g is AIX 7 certified??? thanks in advance. Regards. Mario (2 Replies)
Discussion started by: Zio Bill
2 Replies
netmasks(4)                                                        File Formats                                                        netmasks(4)

NAME
netmasks - network mask database SYNOPSIS
/etc/inet/netmasks /etc/netmasks DESCRIPTION
The netmasks file contains network masks used to implement IP subnetting. It supports both standard subnetting as specified in RFC-950 and variable length subnetting as specified in RFC-1519. When using standard subnetting there should be a single line for each network that is subnetted in this file with the network number, any number of SPACE or TAB characters, and the network mask to use on that network. Network numbers and masks may be specified in the conventional IP `.' (dot) notation (like IP host addresses, but with zeroes for the host part). For example, 128.32.0.0 255.255.255.0 can be used to specify that the Class B network 128.32.0.0 should have eight bits of subnet field and eight bits of host field, in addition to the standard sixteen bits in the network field. When using variable length subnetting, the format is identical. However, there should be a line for each subnet with the first field being the subnet and the second field being the netmask that applies to that subnet. The users of the database, such as ifconfig(1M), perform a lookup to find the longest possible matching mask. It is possible to combine the RFC-950 and RFC-1519 form of subnet masks in the net- masks file. For example, 128.32.0.0 255.255.255.0 128.32.27.0 255.255.255.240 128.32.27.16 255.255.255.240 128.32.27.32 255.255.255.240 128.32.27.48 255.255.255.240 128.32.27.64 255.255.255.240 128.32.27.80 255.255.255.240 128.32.27.96 255.255.255.240 128.32.27.112 255.255.255.240 128.32.27.128 255.255.255.240 128.32.27.144 255.255.255.240 128.32.27.160 255.255.255.240 128.32.27.176 255.255.255.240 128.32.27.192 255.255.255.240 128.32.27.208 255.255.255.240 128.32.27.224 255.255.255.240 128.32.27.240 255.255.255.240 128.32.64.0 255.255.255.192 can be used to specify different netmasks in different parts of the 128.32.0.0 Class B network number. Addresses 128.32.27.0 through 128.32.27.255 have a subnet mask with 28 bits in the combined network and subnet fields (often referred to as the subnet field) and 4 bits in the host field. Furthermore, addresses 128.32.64.0 through 128.32.64.63 have a 26 bits in the subnet field. Finally, all other addresses in the range 128.32.0.0 through 128.32.255.255 have a 24 bit subnet field. Invalid entries are ignored. SEE ALSO
ifconfig(1M), inet(7P) Postel, Jon, and Mogul, Jeff, Internet Standard Subnetting Procedure, RFC 950, Network Information Center, SRI International, Menlo Park, Calif., August 1985. V. Fuller, T. Li, J. Yu, K. Varadhan, Classless Inter-Domain Routing (CIDR): an Address Assignment and Aggregation Strategy, RFC 1519, Network Information Center, SRI International, Menlo Park, Calif., September 1993. T. Pummill, B. Manning, Variable Length Subnet Table For IPv4, RFC 1878, Network Information Center, SRI International, Menlo Park, Calif., December 1995. NOTES
/etc/inet/netmasks is the official SVr4 name of the netmasks file. The symbolic link /etc/netmasks exists for BSD compatibility. SunOS 5.10 7 Jan 1997 netmasks(4)
All times are GMT -4. The time now is 11:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy