- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- controlscript and running cluster
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
09-20-2005 02:49 AM
09-20-2005 02:49 AM
controlscript and running cluster
control script of the package:
mypackage.cntl
Need I stop the cluster to apply these changes?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2005 02:57 AM
09-20-2005 02:57 AM
Re: controlscript and running cluster
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2005 03:01 AM
09-20-2005 03:01 AM
Re: controlscript and running cluster
You can then modify control scripts apply changes and start package
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2005 03:02 AM
09-20-2005 03:02 AM
Re: controlscript and running cluster
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000079973202
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2005 07:38 AM
09-23-2005 07:38 AM
Re: controlscript and running cluster
No need of halting the cluster packages , you can do the modifications online .
For time being you can activate the vg manually and mount file systems after updating the control file .
Next time when you bounce the package every thing will come up normal .
Thanks,
BL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2005 12:05 AM
09-26-2005 12:05 AM
Re: controlscript and running cluster
Create the VG and logical volumes before proceeding. Verify the lvol's will mount, then umount them and deactivate the VG.
1) MAKE CERTAIN that you add the new VG to the cluster configuration ASCII file. Anytime a cmapplyconf is performed on this file, any VG not represented will be de-clustered!!
2) Manually cluster the VG. On a node where the the VG is active, and Serviceguard is running, perform "vgchange -c y
3) Create a map file of the VG:
# vgexport -pvs -m /etc/lvmconf/map.vgNAME /dev/vgNAME
4) Copy map.vgNAME to the other node(s) in the cluster.
5) VGimport the new VG into the other node(s):
OTHERNODE:
# mkdir /dev/vgNAME
# mknod /dev/vgNAME/group c 64 0xNN0000 (where NN = a unique minor number)
# vgimport -vs -m /etc/lvmconf/map.vgNAME /dev/vgNAME
6) ON the original node, update the package control script with references to the new VG and it's logical volumes and mount directories (DON'T FORGET to increment the index numbers within the "[ ]")
8) Copy the script to the other server.
9) Activate the VG, mount it's logical volumes.
10) Test package shutdown, startup and failover to the other node.