HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Installation Document or Step-By-Step
Operating System - HP-UX
1832516
Members
3993
Online
110043
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
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
05-15-2009 09:58 AM
05-15-2009 09:58 AM
Installation Document or Step-By-Step
Hello,
We are in the process of installing Service Guard -- is there any step by step guide to do this?
Any help or information will be appreciated thanks
We are in the process of installing Service Guard -- is there any step by step guide to do this?
Any help or information will be appreciated thanks
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2009 10:10 AM
05-15-2009 10:10 AM
Re: Installation Document or Step-By-Step
serviceguard installation is nothing more different than installing any other HPUX application using swinstall. Setting up a cluster and configuration of a package is the trickier part of serviceguard.
Since every SG implementation is unique to the environmant and application it needs to run on cluster, there is no cookie cutter step by step instructions for it. This set of documents from HP is a good place to start learning about configuring and administering clusters:
http://docs.hp.com/en/ha.html#Serviceguard
Hope this helps
Since every SG implementation is unique to the environmant and application it needs to run on cluster, there is no cookie cutter step by step instructions for it. This set of documents from HP is a good place to start learning about configuring and administering clusters:
http://docs.hp.com/en/ha.html#Serviceguard
Hope this helps
________________________________
UNIX because I majored in cryptology...
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2009 04:58 AM
05-17-2009 04:58 AM
Re: Installation Document or Step-By-Step
Here are the steps.
if you have EOE or MCOE , service guard is already installed in the system.
check what /usr/lbin/cmcld
Node 1
Assume you have set up all the volume groups, logical volumes and file systems and mountd them.
you already have your database and applications running on this machine.
so basically everything is working normally in your node1 server.
now you want to configure service guard, so it will failover your DB and applications from node1 to node2 if there are any problems in node1.
you can use the sgmgr ( gui tool)
node1
now for all vgs
1) copy the current config of vg
2) creating the mapfiles
cat /tmp/vglist
#(this will have all your vgnames in this file)
vgapp
# cat export_vg
#!/bin/sh
mkdir /tmp/node1.mapfiles
TMP=/tmp/node1.mapfiles
for vg in $(cat vglist)
do
vgchange -a r $vg
vgcfgbackup -f $TMP/$vg.bkp $vg
vgexport -p -s -m $TMP/$vg.map -v -f $TMP/$vg.f $vg
done;
the above script creates $TMP/vgapp.map
ll /dev/*/group
crw-r----- 1 root sys 64 0x000000 Dec 3 2006 /dev/vg00/group
crw-r--r-- 1 root sys 64 0x010000 May 15 13:14 /dev/vgapp/group
vg00 is not part of the cluster. here i have only one vg vgapp
node2
mkdir /dev/vgapp/group
mknod c 64 0x010000 /dev/vgapp/group
0x## this number must be the same as in node1
cat import_vg
#!/bin/sh
for vg in $(cat vglist)
do
vgimport -s -m $TMP/$vg.map /dev/$vg
done;
create cluster config file
cmquerycl -v -C /etc/cmcluster/cmclconfig.ascii
modify cmclconfig.ascci
self exaplantory
cmcheckconf -v -C /etc/cmcluster/cmclconfig.ascii
distribute the cluster binary to other files
cmapplyconf
start the cluster
cmruncl -v
those are the basic steps to create the cluster.
then you need to create packages
I need to go now.
if you have EOE or MCOE , service guard is already installed in the system.
check what /usr/lbin/cmcld
Node 1
Assume you have set up all the volume groups, logical volumes and file systems and mountd them.
you already have your database and applications running on this machine.
so basically everything is working normally in your node1 server.
now you want to configure service guard, so it will failover your DB and applications from node1 to node2 if there are any problems in node1.
you can use the sgmgr ( gui tool)
node1
now for all vgs
1) copy the current config of vg
2) creating the mapfiles
cat /tmp/vglist
#(this will have all your vgnames in this file)
vgapp
# cat export_vg
#!/bin/sh
mkdir /tmp/node1.mapfiles
TMP=/tmp/node1.mapfiles
for vg in $(cat vglist)
do
vgchange -a r $vg
vgcfgbackup -f $TMP/$vg.bkp $vg
vgexport -p -s -m $TMP/$vg.map -v -f $TMP/$vg.f $vg
done;
the above script creates $TMP/vgapp.map
ll /dev/*/group
crw-r----- 1 root sys 64 0x000000 Dec 3 2006 /dev/vg00/group
crw-r--r-- 1 root sys 64 0x010000 May 15 13:14 /dev/vgapp/group
vg00 is not part of the cluster. here i have only one vg vgapp
node2
mkdir /dev/vgapp/group
mknod c 64 0x010000 /dev/vgapp/group
0x## this number must be the same as in node1
cat import_vg
#!/bin/sh
for vg in $(cat vglist)
do
vgimport -s -m $TMP/$vg.map /dev/$vg
done;
create cluster config file
cmquerycl -v -C /etc/cmcluster/cmclconfig.ascii
modify cmclconfig.ascci
self exaplantory
cmcheckconf -v -C /etc/cmcluster/cmclconfig.ascii
distribute the cluster binary to other files
cmapplyconf
start the cluster
cmruncl -v
those are the basic steps to create the cluster.
then you need to create packages
I need to go now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2009 12:33 AM
05-18-2009 12:33 AM
Re: Installation Document or Step-By-Step
Dear Andrew
take the attachment also
thanks and regards
Sajjad Sahir
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