Link to home
Start Free TrialLog in
Avatar of mokkan
mokkan

asked on

Veritas Cluster Question

I have a question regarding verits cluster,  in the main.cf, we put as this  so when service group starts, it will start on node1.

SystemList = {  node1=1, node2=1, node3=2 }


If  the service group is failover  node2 and if if it fauled on node2,  how do we know where that service group was running?

Basically, how do we find where service group was running except the default node.
Avatar of simon3270
simon3270
Flag of United Kingdom of Great Britain and Northern Ireland image

hastatus will show the current location of the service group (for example, for ClusterService the current node is node2, the line with "ONLINE").
[root@node1 ~]# hastatus -sum

-- SYSTEM STATE
-- System               State                Frozen

A  node1                RUNNING              0
A  node2                RUNNING              0

-- GROUP STATE
-- Group           System               Probed     AutoDisabled    State

B  ClusterService  node1                Y          N               OFFLINE
B  ClusterService  node2                Y          N               ONLINE
[root@node1 ~]# 

Open in new window

Avatar of mokkan
mokkan

ASKER

You are right. How do I find where that service group was running before?
ASKER CERTIFIED SOLUTION
Avatar of simon3270
simon3270
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mokkan

ASKER

ah ok thank a lot.