Operating System - OpenVMS
1748195 Members
2672 Online
108759 Solutions
New Discussion юеВ

Re: Availability manager

 
SOLVED
Go to solution
Edgar Ulloa
Frequent Advisor

Availability manager

Hi

I was install in my cluster Availability Manager, The data collector was install in the cluster and other nodes and the analyze data was install in to node stand allone.

I Can see the nodes stand allone, but my cluster I only can see one node.

I have comunication via decnet and tcp/ip from both cluster nodes towards monitor node.

Some body have any Idea why I can see my other node..?

Thanks
3 REPLIES 3
Andy Bustamante
Honored Contributor
Solution

Re: Availability manager

Availablity manager uses it's own network protocol. You'll need to make sure this is configured for the LAN device.

See the file sys$manager:amds$logicals.com to control the logical AMDS$DEVICE. A very quick example:

$ thisnode=f$getsyi("NODENAME")
$ IF thisnode .eqs. "ALPHA0" THEN $ AMDS$DEF AMDS$DEVICE "EWA0"
$ IF thisnode .eqs. "ALPHA1" THEN $ AMDS$DEF AMDS$DEVICE "EIB0"
$ IF thisnode .eqs. "ALPHA2" THEN $ AMDS$DEF AMDS$DEVICE "LLA0"

Availablity Manager is an excellent tool.

Andy
If you don't have time to do it right, when will you have time to do it over? Reach me at first_name + "." + last_name at sysmanager net
Mike Reznak
Trusted Contributor

Re: Availability manager

Hi,

check installation manual, especialy postinstallation tasks.

http://h71000.www7.hp.com/openvms/products/availman/6552INSTALL_vms_241.TXT

Mike
...and I think to myself, what a wonderful world ;o)
Edgar Ulloa
Frequent Advisor

Re: Availability manager

Thanks Andy and forum for your help