HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: SGeRAC
Operating System - HP-UX
1832978
Members
2970
Online
110048
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
09-27-2006 05:19 AM
09-27-2006 05:19 AM
Hi,
I am installing SGeRAC for Oracle 10g on two HP-UX v23 Itanium servers connected to EVA 4000 through redundant SAN directors.
Can somebody help me with the steps to be taken to achieve that purpose ?
Thanks in advance.
Regards,
Berenger
I am installing SGeRAC for Oracle 10g on two HP-UX v23 Itanium servers connected to EVA 4000 through redundant SAN directors.
Can somebody help me with the steps to be taken to achieve that purpose ?
Thanks in advance.
Regards,
Berenger
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 05:45 AM
09-27-2006 05:45 AM
Solution
Hi,
So now you have to create cluster and configure package for Oracle. Another thing is do you have licensed SecurePath ? You have to prepare the nodes for cluster configuration:
On both nodes:
vi /etc/hosts
192.168.1.1 node1
192.168.1.2 node2
vi /etc/cmcluster/cmclnodelist
node1 root
node2 root
vi /.rhosts
node1 root
node2 root
Lets say that the vdisk from EVA appears as c15t0d0, you have to create volume group:
node1:
pvcreate /dev/rdsk/c15t0d0
mkdir /dev/vgcl
mknod /dev/vgcl/group c 64 0x010000
vgcreate vgcl /dev/dsk/c15t0d0
vgexport -p -s -m vgcl /tmp/vgcl.map
scp /tmp/vgcl.map node2:/tmp
node2:
mkdir /dev/vgcl
mknod /dev/vgcl/group c 64 0x010000
vgimport -s -m /tmp/vgcl.map vgcl
vgchange -a y vgcl
vgchange -a n vgcl
node1:
cd /etc/cmcluster
cmquerycl -v -C cmclconfig.ascii -n node1 -n node2
Now you have to edit cmclconfig.ascii and make the appropriate changes: cluster name, node names, network interfaces, network addresses, heartbeats, max configured packages. Once the cluster is created most of the parameters could not be changed to be warned. After the changes are made you can check if the configuration is working:
cmcheckconf -C /etc/cmcluster/cmclconfig.ascii
and if everything is fine you can apply the configuration and activate the cluster:
cmapplyconf -C /etc/cmcluster/cmclconfig.ascii
vgchange -a n vgcl
cmruncl -v
vgchange -c y vgcl
From now on you have working cluster and you have to create a package. Another thing is if you have a SecurePath installed, which will automaticly balance the traffic going through the SAN, if not you have to add physical links to the physical volumes in order to have high availability. Good luck.
Meanwhile take a look at the docs here:
http://docs.hp.com/en/T1859-90038/index.html
Regards.
--
sve
So now you have to create cluster and configure package for Oracle. Another thing is do you have licensed SecurePath ? You have to prepare the nodes for cluster configuration:
On both nodes:
vi /etc/hosts
192.168.1.1 node1
192.168.1.2 node2
vi /etc/cmcluster/cmclnodelist
node1 root
node2 root
vi /.rhosts
node1 root
node2 root
Lets say that the vdisk from EVA appears as c15t0d0, you have to create volume group:
node1:
pvcreate /dev/rdsk/c15t0d0
mkdir /dev/vgcl
mknod /dev/vgcl/group c 64 0x010000
vgcreate vgcl /dev/dsk/c15t0d0
vgexport -p -s -m vgcl /tmp/vgcl.map
scp /tmp/vgcl.map node2:/tmp
node2:
mkdir /dev/vgcl
mknod /dev/vgcl/group c 64 0x010000
vgimport -s -m /tmp/vgcl.map vgcl
vgchange -a y vgcl
vgchange -a n vgcl
node1:
cd /etc/cmcluster
cmquerycl -v -C cmclconfig.ascii -n node1 -n node2
Now you have to edit cmclconfig.ascii and make the appropriate changes: cluster name, node names, network interfaces, network addresses, heartbeats, max configured packages. Once the cluster is created most of the parameters could not be changed to be warned. After the changes are made you can check if the configuration is working:
cmcheckconf -C /etc/cmcluster/cmclconfig.ascii
and if everything is fine you can apply the configuration and activate the cluster:
cmapplyconf -C /etc/cmcluster/cmclconfig.ascii
vgchange -a n vgcl
cmruncl -v
vgchange -c y vgcl
From now on you have working cluster and you have to create a package. Another thing is if you have a SecurePath installed, which will automaticly balance the traffic going through the SAN, if not you have to add physical links to the physical volumes in order to have high availability. Good luck.
Meanwhile take a look at the docs here:
http://docs.hp.com/en/T1859-90038/index.html
Regards.
--
sve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2006 02:40 AM
09-29-2006 02:40 AM
Re: SGeRAC
Hi,
Thank you very much for your reply. I helps me a lot. Cluster is up and running, but I used the shared VG between both nodes as VG lock. Can you please educate me a little bit about vglock and PV lock ? Do I need to create another virtual disk on the EVA for use as vg or PV lock ? the size ?
Thanks in advance for your reply.
Regards,
Mawuse
Thank you very much for your reply. I helps me a lot. Cluster is up and running, but I used the shared VG between both nodes as VG lock. Can you please educate me a little bit about vglock and PV lock ? Do I need to create another virtual disk on the EVA for use as vg or PV lock ? the size ?
Thanks in advance for your reply.
Regards,
Mawuse
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2006 01:29 AM
10-02-2006 01:29 AM
Re: SGeRAC
The cluster is up and running. Thanks for that.
I will post a message into the same forum for further help.
I will post a message into the same forum for further help.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP