- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- MC/SG OPS - two node access volume group at the sa...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2002 08:46 PM
05-01-2002 08:46 PM
In my system is installed the MC/SG OPS bundle edition A.11.14.
Two node cluster have a pkg1.
At the same time two system is going to aceess vg02(sharable VG).
After I finished the configuration with pkg1,
i do cmviewcl. the result work right.
But System1 has mount vg02, system2 has'nt mount vg02.
pkg1 control script, vgchange -a s
I have a question.
At the same time one volume group is mounted by two system.
Please!! solve me.
thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2002 09:44 PM
05-01-2002 09:44 PM
Re: MC/SG OPS - two node access volume group at the same time.
I am sending you part of my scripts, which was part of the package to activate the VG's.
vgchange -a n /dev/array1
vgchange -a n /dev/array2
vgchange -a n /dev/vglock
vgchange -S y -c y /dev/array1
vgchange -S y -c y /dev/array2
vgchange -S y -c y /dev/vglock
vgchange -a s /dev/array1
vgchange -a s /dev/array2
vgchange -a s /dev/vglock
This will activate my VG's shared mode and accessable by both the nodes.
After this I had a package to start my Oracle database.
Just my two cents.
-Sukant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2002 10:00 PM
05-01-2002 10:00 PM
Re: MC/SG OPS - two node access volume group at the same time.
When I do the next command,
The result is..
#cmhaltcl -f
#vgchange -a n /dev/vg02
#vgchange -S y -c y /dev/vg02
vgchange: Cluster Services not available or unreachable on this system, for volu
me group "/dev/vg02".
#cmruncl -v
#vgchange -S y -c y /dev/vg02
vgchange: The volume group "/dev/vg02" is active on this system.
Cannot perform requested chang
Can you tell me the method while the cluster alive Two node access the VG at the same time.
IF I install the oracle, the both system is able to access the sharable volumegroup.
tell me mount the both system at a time.
Please...
thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2002 10:56 PM
05-01-2002 10:56 PM
SolutionCan you check the cluster this way.
1. Bring up the cluster.
2. Then run the following commands on node1 as root user:
vgchange -a n /dev/array1
vgchange -a n /dev/array2
vgchange -a n /dev/vglock
This will first deactivate the volumegroups if by chance you have mounted these volumegroups in exclusive mode.
3. Run the same set of commands as root on the node2.
vgchange -a n /dev/array1
vgchange -a n /dev/array2
vgchange -a n /dev/vglock
4. When you are assured that the VG's have been deactivated on both the nodes then run the following commands on node1:
vgchange -S y -c y /dev/array1
vgchange -S y -c y /dev/array2
vgchange -S y -c y /dev/vglock
vgchange -a s /dev/array1
vgchange -a s /dev/array2
vgchange -a s /dev/vglock
5. Repeat the same step no. 4 on node2.
This will ensure you that the volumegroups have now been mounted in shared mode.
6. Bring up the oracle Instances.
Hope this helps.
-Sukant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 04:49 AM
05-02-2002 04:49 AM
Re: MC/SG OPS - two node access volume group at the same time.
Each node in an OPS cluster must have it's own package in order to activate the Volume Groups in "shared" mode and start their own instance of Oracle.
This means two different packages with unique package names and control scripts.
Each package should be configured to run on only one node and no other.
See the manual: "Configuring OPS Clusters with ServiceGuard OPS Edition " at http://docs.hp.com/hpux/ha/index.html#ServiceGuard%20OPS%20Edition%20(MC/LockManager) for more information.
-s.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 04:37 PM
05-02-2002 04:37 PM
Re: MC/SG OPS - two node access volume group at the same time.
At first, I have made one package two node cluster. But the both node cannot access at the same time.
So, I make a one package owned by one node each other.
Now, the both node can access the volume group.
Thank you..