- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Cluster heartbeat
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
03-15-2004 11:07 PM
03-15-2004 11:07 PM
Cluster heartbeat
I've created a two node cluster, each have 1 FDDI and 2 1Gb Ethernet NICs.
The cluster is up and running and now I trying to find out which of the NICs are responsable for the Cluster heartbeat if I remove the FDDI ring.
Can any one help me in this matter?
Regards, Torfi.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 11:18 PM
03-15-2004 11:18 PM
Re: Cluster heartbeat
Could you give little more detail on the type of your cluster or your cluster setup/configuration.
Since its a 2-node cluster, i bet you have a quorum disk? Am i right in concluding this?
It should not be an issue for you to remove the FDDI loop, how ever i would need more details before i can confirm on this :-)
What is your intended use of the FDDI loop?
I am sorry, i am asking more questions rather than replying. I just wanted to get as many details as possible and throw this out to every one here, so that they can all have their perspective :-)
regards
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 11:29 PM
03-15-2004 11:29 PM
Re: Cluster heartbeat
ana/sys
sh lan
and see if you have 60-07 and Lavc foor each card.
by default, the Cluster protocol runs on all interfaces.
You can stop it with the programs in sys$examples:lavc$start_bus and lavc$stop_bus.
if you have Vms 7.3 or later, you have a better way, play with priorities with
$ mc scacp
set lan_device ewa/prio=4
set lan-device ewb/prio=2
or just stop the protocol for certain cards
$ mc scacp
stop lan_device ewa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2004 04:54 AM
03-17-2004 04:54 AM
Re: Cluster heartbeat
(BTW, there is much more complex communication between OpenVMS Cluster nodes than a simple heartbeat as one might see in a simple fail-over cluster under Windows or UNIX, and this communication includes such things as distributed lock manager traffic.)
PEDRIVER is the portion of OpenVMS code which handles inter-node communications in a cluster over a LAN.
Based on packet loss history, capacity, and latency, PEDRIVER selects a set of optimal channels to a remote node, which is called the Equivalent Channel Set, and transmits round-robin across all of the channels in the ECS. (At the same time, it can receive on all channels, whether they're in the ECS for transmitting or not.) This is documented in Appendix G of the OpenVMS Cluster Systems Manual at http://h71000.www7.hp.com/doc/731FINAL/4477/4477pro_034.html#congestion_appendix
To easily see which path(s) PEDRIVER is using to transmit from each node to each of the other nodes at a given point in time, run the SHOW_PATHS_ECS.COM procedure from the [KP_CLUSTERTOOLS] directory on the V6 Freeware CD that shipped with 7.3-2 and is also available on the Web at http://h71000.www7.hp.com/openvms/freeware/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2004 05:07 AM
03-17-2004 05:07 AM
Re: Cluster heartbeat
the additions to PEDRIVER (it now reports excessive packet loss) have been very useful during my last mission. We had attempted to migrate from 10MBit to 100MBit at a customer's site. After the message I used good old DECnet's DTSEND and 'MCR NCP SHOW KNOWN LINES COUNTERS' to diagnose everything - turned out to be a flow-control mismatch.
Please forward my thanks to whoever has made the improvement!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2004 04:26 AM
03-19-2004 04:26 AM
Re: Cluster heartbeat
I've forwarded your thanks to Verell Boaen, who leads the team handling PEDRIVER.