- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- replace node in 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
11-23-2004 12:48 PM
11-23-2004 12:48 PM
replace node in Cluster
I consider that I should whether edit Cluster file, package control file or edit server configuration?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 12:54 PM
11-23-2004 12:54 PM
Re: replace node in Cluster
It depends. If the 'device files' are going to be the same, then you don't need to change the configuration but you still have to 'apply' the configuration as the MAC addresses of the lancards may change. If the 'device files' are going to change, then you will have to update the configuration (specify new interfaces for the network) and apply the configuration. You can change the device files to look like the old server using 'ioinit' command. 'man ioinit' for more information. Or you can actually take the make_tape_recovery tape of the old server and recover it on the newone. If the model is also going to be exactly the same, you can use the same boot disks too but ensure you have good make_tape_recovery tapes in any case.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 02:39 PM
11-23-2004 02:39 PM
Re: replace node in Cluster
cmgetconf
cmhaltnode node2
shut it down
install new "node2"
cmcheckconf
cmapplyconf
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2004 02:56 PM
11-23-2004 02:56 PM
Re: replace node in Cluster
Then remove the node from the cluster.
Test everything and make sure the entire cluster is functioning normally.
Then build the new node. If everything was functioning the way you want, the configuration files can be copied wholesale. Any references to hostname need to be changed if this in the new node.
With a good test plan you can get this done with no impact on users at all.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2004 02:12 AM
11-24-2004 02:12 AM
Re: replace node in Cluster
To see what I am referring to, use the 'cmviewconf | more' command to review the current cluster (the command inspects the cluster binary file - /etc/cmcluster/cmclconfig)
Before node2 can be removed,
- any package running on node2 must be moved off to another node
- any package that uses node2 must be configured such that it does not reference node2
(edit the package configuration file, comment out the NODE_NAME reference for node2 and 'cmapplyconf -P
To remove the old node2 from the cluster remove reference to the old node2 from the cluster configuration file, and 'cmapplyconf -C
To add the new node2, use:
'cmquercycl -C cluster.new -n node1 -n node2(new) -n node3 -n node4'
Transfer the discovered configuration information for the new node2 listed in the cluster.new file to your cluster.ascii config file.
and 'cmapplyconf -C
- re-add NODE_NAME referece for new node2 to the package config files
- cmapplyconf -P
-StephenD.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2004 02:13 PM
12-05-2004 02:13 PM
Re: replace node in Cluster
Thank for yours answer.