- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to eliminate SG
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
06-27-2004 09:56 PM
06-27-2004 09:56 PM
I planned to modify first package switching off autostart and then stop the cluster but unluckly I can't run cmchekconf because I get some errors.
So I decided to stop packeges, halt cluster, switching off AUTOSTART_CMCLD in /etc/rc.config.d/cmcluster, activate vg and modify /etc/lvmrc, modify /etc/fstab, unmask disk to node that doesn't manage application, do vgscan to reliagn /etc/lvmtab and finally swremove SG software.
Do you think I can safely do these steps?
Thank You
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 10:14 PM
06-27-2004 10:14 PM
Re: how to eliminate SG
Don't forget the network, you must setup the network alias of the cluster pkg. If you have NFS involve, you have also to perform all the export and import made by the cluster.
Johan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2004 10:16 PM
06-27-2004 10:16 PM
Re: how to eliminate SG
You r almost right.
1. Halt cluster
2. # vgchange -c n /dev/vgxx
3. # vgchange -a y /dev/vgxx
4. Proceed as per your plans explained above.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 01:57 AM
06-28-2004 01:57 AM
Re: how to eliminate SG
Do not forget to copy the start and stop scripts to the /sbin/init.d dir (rc them).
mind the .rhosts files. May be installing apa can help you keeping the fail over lan config.
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 02:07 AM
06-28-2004 02:07 AM
SolutionOnce you do 'cmdeleteconf', it should automatically put your VGs back into default configuration. But it doesn't hurt to 'vgchange' them too. I would follow this procedure.
1. Halt the packages and delete the package configuration.
cmhaltpkg
cmdeleteconf -p
2. Take the VGs out of the cluster
vgchange -a n vgxx
vgchange -c n vgxx
vgchange -a y vgxx
3. Make sure /etc/fstab is updated with the filesystems. Compare the entries in your package control files against /etc/fstab.
4. Mount the filesystems.
mount -a
5. If you want to, bring up the application and ensure it is up and running. If you were having floating IPs, you may want to add them to your netconf file with logical interfaces (lan0:1) etc.,
6. Delete the cluster
cmdeleteconf
7. Export the VGs on the failover node. Important. If possible, disconnect|unmap the LUNs to it.
Don't need to worry about vgscan. It's not required.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 08:44 PM
06-28-2004 08:44 PM
Re: how to eliminate SG
I need also to remove SG on a HP-UX cluster.
Here is my list of tasks :
1.Halt Cluster
2.Save Configuration (tar of /etc/cmcluster/*)
3.cmdeleteconf
4.vgchange -c n ${VG}
5.vgchange -a n ${VG}
6.set autostart_cmcld & autostart_cmsnmpd=0
7.Reboot of both servers.
8.swremove SG
Is it correct?
What could I forget to do ?
Thanks for your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2004 08:59 PM
06-28-2004 08:59 PM
Re: how to eliminate SG
Regards,