Home Linux & Systems Cybersecurity Cloud & DevOps Networks & Infrastructure SIEM & Monitoring DFIR & Threat Intel Development & Other All categories Projects About Tools

Error Red Hat Cluster Local machine trying to enable service:httpd…Temporary failure; try again

Leer en espanol
Error Red Hat Cluster Local machine trying to enable service:httpd…Temporary failure; try again

Table of contents

We try to lift the service and we get the s ===

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 again

After 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 resource

We 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 locked

We unlock the resource

text
clusvcadm -u service:httpd
Resource groups unlocked

Once unlocked we can move the resource

text
clusvcadm -r httpd -m nodo02

all the best.

Comments