- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- VMS Failover
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
04-20-2005 06:35 PM
04-20-2005 06:35 PM
VMS Failover
Thanks,
Kelly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2005 06:54 PM
04-20-2005 06:54 PM
Re: VMS Failover
I am afraid that you are expecting a little bit too much of OpenVMS.
You cannot expect an IP cluster alias to work between non clustered systems.
That said, I think you mean to say that your systems ARE clustered. But we would need more information. Which versions of OpenVMS and TCP/IP are you using? Can you show how you configured the cluster alias?
Regards,
Bart Zorn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2005 07:04 PM
04-20-2005 07:04 PM
Re: VMS Failover
as Bart said, the TCPIP cluster is based on the OpenVMS cluster functionality.
You may be able to implement your own 'poor mans alias' by writing some background batch job, which will PING the other node and if the PING fails, activate the 'cluster' alias on the local node. But this will not be as perfect as a real cluster alias.
TCPIP V5.4 has introduced failSAFE IP, which replaces the traditional TCPIP cluster alias, but to allow failover between 2 nodes, those nodes also need to be clustered.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2005 07:41 PM
04-20-2005 07:41 PM
Re: VMS Failover
You will need to rely on external (= non-VMS-like) solutions, involving METRIC service and an (external) DNS server, and a name to name the combination of those unrelated machines.
The DNS server will need to allow periodic updates to translate the clusterNAME to a specific machine, by his IP address, based on the METRIC outcome, by time or whatever scheme you wish to use.
The advantage is the machines do not need to be clustered - it's the "simple", *x-like solution. I don't say "bad" - it seems to work in that environment, but it's defenitely NOT the VMS-way of doing things, where synchronisation isn't even an issue.
When TCPIP would have had the cluster awareness of DECNet, we wouldn't require this. One of those missed opportunities :-(
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2005 08:31 PM
04-20-2005 08:31 PM
Re: VMS Failover
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2005 11:11 PM
04-20-2005 11:11 PM
Re: VMS Failover
I think this should probably help you. Years back i was confronted with similar issue and this is what was the solution we adopted
1. An application that was very critical
required it to be tied to an IP address
rather than a host name.
2. I had 2 stand alone servers, one was live
and the other backup.
3. In efforts to fail over this application
or switch the application from Server A
to Server B, what we did was define
a secondary IP address
To give you little more details, each of my servers Serv A and Serv B had their own IP addresses. We had this application that need an IP address point to a secondary IP address on Sever A (now server A has 2 IPs). Essentially when failover of application was required from Server A to Server B, we would shutdown the appplication on Server A, remove the secondary IP from Server A and add the same IP to Server B as Secondary and start the application on Server B.
Let me know if any clarifications are needed
regards
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2005 07:05 AM
04-21-2005 07:05 AM
Re: VMS Failover
I took the cluster apart recently and now have two totally independent nodes. I have written a C program that accesses the application health on these two nodes and initiates a fail over. I am using decent to do some of the inter-node communications (using TCP to see if TCP is ok did not make as much sense) I was looking for tricks to play so I could get a cluster alias working and hoped that a TCP service would alias without a VMS cluster. For those wondering, I un-clustered because a VMS cluster is more reliable than a stand alone system but sometimes there are issues that cannot be totally eliminated which affect the whole cluster. Most applications cannot be completely distributed and so clustering is best but mine can be completely redundant when I get a redirector working to route the requests to the systems that work.
Thanks,
Kelly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2005 01:40 AM
04-22-2005 01:40 AM
Re: VMS Failover
Seriously, I've been involved with doing redundant VMS systems that aren't clustered -- to avoid the cluster transition time. The time can be made smaller, but not zero. There are some applications that can't take that. Process automation, for one.
It's a lot harder than you think.
What happens if DECnet connectivity between the nodes fails? Who "wins" the race condition, or do both become "primary"? And how do you force one mode to become the primary so you can do maintenance on the other?
I've seen this handled with a special Q-bus arbitration card. I've also seen a pair of programmable controllers connected via serial ports.
In all cases, it seems to need a third system to be the "tiebreaker". Of course, if that node fails, then what?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2005 02:00 AM
04-22-2005 02:00 AM
Re: VMS Failover
I've started discussion of this issue in another thread, entitled "Real-tine process control in an OpenVMS Cluster environment".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2005 05:06 AM
04-22-2005 05:06 AM
Re: VMS Failover
You have to have the third node (which does not have to be a VMS system - it can be other hardware like Stanley said). If that node fails then the application stays how it is and you lose the ability to automagically switch to standby.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 04:22 PM
04-26-2005 04:22 PM
Re: VMS Failover
Kelly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2005 06:04 PM
04-26-2005 06:04 PM
Re: VMS Failover
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=861945
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2005 12:19 AM
08-30-2005 12:19 AM
Re: VMS Failover
Pointer to help on points:
http://forums1.itrc.hp.com/service/forums/helptips.do?#33
Thanks in advance.