In this entry we are going to see how to solve this big problem that happens to us when starting or trying to migrate a service from one node to another.
We try to lift the service and we get the following error:
text
# clusvcadm -e service:httpd
Local machine trying to enable service:httpd…Temporary failure; try againAfter failing to start the service, we try to migrate the service to the other node, which shows us the following error:
text
# clusvcadm -r service:httpd -m nodo02
Trying to relocate service:httpd1 to nodo02…Invalid operation for resourceWe check that the service is blocked, this information can be obtained in the following ways:
text
# clusvcadm -l service:httpd
Resource groups locked
After Status
Service Information
——- ———–
Service Name : service:httpd
Current State : started (112)
# clusvcadm -S service:httpd
Resource groups lockedWe unlock the resource
text
clusvcadm -u service:httpd
Resource groups unlockedOnce unlocked we can move the resource
text
clusvcadm -r httpd -m nodo02all the best.
Comments