About Us

RSInfoMinds, a web based IT Training and Consultancy firm. It is established with high dreams in training people in IT Infrastructure Field. We provide Online and Class Room training in various fields of IT Infrastructure Management.

Join Us: http://www.facebook.com/RSInfoMinds
Mail Us: rsinfominds@gmail.com
Twitter: @RSInfoMinds

We are specialized in the below courses:

Redhat Linux Admin Redhat Linux Cluster
Redhat Virutualization IBM AIX Admin
IBM AIX Virtualization IBM AIX Cluster
HP Unix Admin HP Unix Cluster
HP Unix Virtualization Shell Scripting
Veritas Volume Manager Veritas Cluster
Oracle Core DBA VMWare


We provide training in such a way, So that you get in depth knowledge on the Courses you look for.

And we ensure you are very confident from each and every Techincal aspect that the IT Industry needs and expects from you.

We also conduct Workshops on the latest technology and the real time faculties sharing their work experiences to make you the best.

Sunday 26 January 2014

Failed; service running on original owner

When trying to start a Service in RHEL Cluster:

[root@node2 ~]# clusvcadm -r SQL_SG
Trying to relocate service:SQL_SG...Failed; service running on original owner
[root@node2 ~]#

If you encounter the above message. The possible cause is.

cat /etc/cluster/cluster.conf

 <service domain="Webserver_FA" exclusive="1" name="Webserver_SG" recovery="relocate">

<service domain="SQL_FA" exclusive="1" name="SQL_SG" recovery="relocate">

From the above we can see the cluster is configured to run 2 different services in Exclusive mode, Which is not possible on RHEL. So at a give time on cluster we can only only exclusive service.

So, You can disable exclusive option for SQL_SG and start it or make SQL_SG as a part of Webserver_SG.

 Service Name                   Owner (Last)                   State
 ------- ----                   ----- ------                   -----
 service:SQL_SG                 (none)                         stopped
 service:Webserver_SG           node1                          started


 Service Name                   Owner (Last)                   State
 ------- ----                   ----- ------                   -----
 service:SQL_SG                 node2                          started
 service:Webserver_SG           node1                          started

1 comment:

  1. Having the same error for a different reason unfortunately. No exclusivities, still getting "Failed; service running on original owner" for no apparent reason.

    ReplyDelete