Operating System - OpenVMS
1753634 Members
5845 Online
108798 Solutions
New Discussion юеВ

know which cluster we are in

 
SOLVED
Go to solution
Jees Joy
Frequent Advisor

know which cluster we are in

Hi Friends

Which command will help me to show which cluster my node belongs to.

thanks in advance

jees Joy
8 REPLIES 8
Volker Halle
Honored Contributor
Solution

Re: know which cluster we are in

Jees,

an OpenVMS cluster itself does not have a 'name'. It consists of a number of OpenVMS nodes. You can show the nodes in a cluster with:

$ SHOW CLUSTER

$ SHOW SYSTEM/CLUSTER/NOPROCESS

The cluster may be accessed via various network protocols (DECnet, LAT, TCPIP) and there may be 'cluster alias names' associated with those network protocols.

Volker.
Robert Gezelter
Honored Contributor

Re: know which cluster we are in

jees,

As Volker mentioned, SHOW CLUSTER will display the members of your OpenVMS cluster (or at least the ones that your cluster member has seen at some point).

But perhaps your real question has been misphrased? What are you trying to accomplish?

- Bob Gezelter, http://www.rlgsc.com
Jan van den Ende
Honored Contributor

Re: know which cluster we are in

Jees,

from your Forum Profile:


I have assigned points to 18 of 43 responses to my questions.


Maybe you can find some time to do some assigning?

http://forums1.itrc.hp.com/service/forums/helptips.do?#33

Mind, I do NOT say you necessarily need to give lots of points. It is fully up to _YOU_ to decide how many. If you consider an answer is not deserving any points, you can also assign 0 ( = zero ) points, and then that answer will no longer be counted as unassigned.
Consider, that every poster took at least the trouble of posting for you!

To easily find your streams with unassigned points, click your own name somewhere.
This will bring up your profile.
Near the bottom of that page, under the caption "My Question(s)" you will find "questions or topics with unassigned points " Clicking that will give all, and only, your questions that still have unassigned postings.

Thanks on behalf of your Forum colleagues.

PS. - nothing personal in this. I try to post it to everyone with this kind of assignment ratio in this forum. If you have received a posting like this before - please do not take offence - none is intended!

Proost.

Have one on me.

jpe
Don't rust yours pelled jacker to fine doll missed aches.
Uwe Zessin
Honored Contributor

Re: know which cluster we are in

An OpenVMS cluster does not have a name,
but it uses a "cluster group number":

$ run sys$system:sysman
SYSMAN> CONFIGURATION SHOW CLUSTER_AUTHORIZATION
Node NODE21: Cluster group number 65240
Multicast address: AB-00-04-01-F2-FF
.
Robert Walker_8
Valued Contributor

Re: know which cluster we are in

Jees,

There is also a thing called a cluster alias - DECnet and TCPIP (If installed).

The cluster alias allows DECnet protocols to reach any specific or round robin approach (based on system availability) depending upon how its configured. Some machines for instance wouldnt receive incoming responses yet send out going as the cluster alias. At one stage we had a four 6x00 VAX cluster with the alias set on outbound so that VMSmail etc could be handled and on inbound to that cluster only two of the systems would accept it.

For TCPIP cluster alias, one can set a preferred host as the alias, and then failover if that host was down.

Robert.
Sastry  Karra
New Member

Re: know which cluster we are in

Hi Joy,
I don't remember any LEXICAL function that gives the cluster name. F$GETSYI can tell if a node is a member of local cluster.
Thanks,
Sastry Karra
MS MBA
OpenVMS Consultant
http://vmspros.freeservers.com
comarow
Trusted Contributor

Re: know which cluster we are in

Just a quick note.
Network connected cluster with use
a group number and password. So it will
not always work.

Not all clusters have cluster aliases set up. So that won't always work.

You can have single node clusters.

The real answer depends on what problem you
are trying to solve, and your configuration.

Consequently, we are back to show cluster.
Jees Joy
Frequent Advisor

Re: know which cluster we are in

Thank you.