Hooray, found the reason of cluster failure. It was oracle db user issue. Oracle DB server resource timed out due to Oracle DB locked user.
So we solved a problem via below order.
- Unlocked oracle db user which is used to connect Sun Cluster Oracle Resource to Ora DB.
- Took the resource group offline.
- Disabled oracle db resources and application resources.
- Brought resource group online on active node.
- Started oracle db manually.
- About 10 mins, enabled oracle db resources and application resources.
Hi Gurus
I am not able to find the patching procedure for solaris 10 ( sol10 u11) to latest patchset with sun cluster having failover zones so that same I should follow.
Take an instance, there are sol1 and sol2 nodes and having two failover zones like sozone1-rg and sozone2-rg and currently... (1 Reply)
Hi,
I am using Power HA7.1.1 SP5 AIx 7.1
My both cluster nodes are independently working. RG informations are not updating each other. Node A shows that node B is down and vice versa.
RG1 is running node A, RG2 running on node B.
=== clRGinfo From Node B ===
RG01 OFFLINE ... (2 Replies)
Hi Guys,
I am not much aware of clusters but i have few questions can someone provide the overview as it would be very helpful for me.
How can i perform cluster failover test to see all the services are failing back to other node ? If it is using veritas cluster then what kind of... (2 Replies)
Hello everyone,
I have two Solaris 10 servers that are on cluster. The cluster is a Sun Cluster 3.2
I have a script cronned that stop/start a ressource in a resource group everyday.
Today I have checked the status of the ressources and I found that my ressource group have a "Error--stop... (1 Reply)
I have installed sun cluster 3.2 on two sprac servers. Configured a failover resource group. Added a LogicalHostname resource to it. LogicalHostname is also added to /etc/hosts with ip address.
I am able to access cluster by share ip used for logical hostname but when i try to switch the resource... (0 Replies)
I am using VMware Workstation-7 on Windows-XP host .
I am trying to configure Solaris 10-X86 guest os based 2 nodes Sun Cluster .
I have added one extra Virtual Lan adapter on my VMware with another subnet (that I would like to put for SUN Cluster private communication).
I have... (0 Replies)
Hello,
As explained, I've encountered an issue while installing Solaris 10 SPARC Recommended Patch Cluster (2009.10.23).
Actually, patch no 120011-14 stops with the following error:
ERROR: attribute verification of </var/run/.patchSafeMode/root/usr/bin/passwd> failed
file type <f>... (6 Replies)
CLUSTER(1) General Commands Manual CLUSTER(1)NAME
cluster - find clusters in a graph and augment the graph with this information.
SYNOPSIS
cluster [-v?] [ -Ck ] [ -ck ] [ -o outfile ] [ files ]
DESCRIPTION
cluster takes as input a graph in DOT format, finds node clusters and augments the graph with this information. The clusters are specified
by the "cluster" attribute attached to nodes; cluster values are non-negative integers. cluster attempts to maximize the modularity of the
clustering. If the edge attribute "weight" is defined, this will be used in computing the clustering.
OPTIONS
The following options are supported:
-Ck specifies a targeted number of clusters that should be generated. The specified number k is only a suggestion and may not be real-
isable. If k == 0, the default, the number of clusters that approximately optimizes the modularity is returned.
-ck specifies clustering method. If k == 0, the default, the modularity will be used. If k == 1 modularity quality will be used.
-ooutfile
Specifies that output should go into the file outfile. By default, stdout is used.
-v Verbose mode.
EXAMPLES
Applying cluster to the following graph,
graph {
1--2 [weight=10.]
2--3 [weight=1]
3--4 [weight=10.]
4--5 [weight=10]
5--6 [weight=10]
3--6 [weight=0.1]
4--6 [weight=10.]
}
gives
graph {
node [cluster="-1"];
1 [cluster=1];
2 [cluster=1];
3 [cluster=2];
4 [cluster=2];
5 [cluster=2];
6 [cluster=2];
1 -- 2 [weight="10."];
2 -- 3 [weight=1];
3 -- 4 [weight="10."];
4 -- 5 [weight=10];
5 -- 6 [weight=10];
3 -- 6 [weight="0.1"];
4 -- 6 [weight="10."];
}
AUTHOR
Yifan Hu <yifanhu@research.att.com>
SEE ALSO gvmap(1)
Blondel, V.D., Guillaume, J.L., Lambiotte, R., Lefebvre, E.: Fast unfolding of communities in large networks. Journal of Statistical
Mechanics: Theory and Experiment (2008), P10008.
3 March 2011 CLUSTER(1)