Created 04-05-2016 02:21 PM
Custom add on service stuck in starting state and now cannot start,stop or delete the service itself.
When I try to start I get the error "Command Start is not currently available for execution."
Whey I try to stop the service I get the error "At least one role must be started."
When I try to delete the service I get the error "The following roles roles need to be stopped before deleted."
Please advise.
Created 04-07-2016 04:52 PM
Li Wang, Technical Solution Manager
Created 04-07-2016 04:52 PM
Li Wang, Technical Solution Manager
Created 04-07-2016 08:36 PM
Created 04-07-2016 10:06 PM
Hi,
I am copying the solution here in case you don't have access to the KB article.
Please make sure you have a Cloudera Manager database backup.
Perform the following actions:
1. Log into the Cloudera Manager database and run a query against all the services in the Roles table.
select role_id, name, configured_status from ROLES where configured_status = "STOPPING"; -- Replace STOPPED with STARTING depending on the use case.
2. Note any roles that you know for certain are stopped but are indicated as "STOPPING" or any roles you know for certain are started but are indicated as "STARTING"
3. Execute an update statement to set the role to the correct state.
update ROLES set configured_status = "STOPPED" where role_id = #; -- Replace STOPPED with STARTING depending on the use case. Replace the role_id with the value got from step 1.
4. Re-execute the select statement to check to ensure the configured_status is now indicating the correct state.
5. Start or stop the role as required.
Hope this helps.
Li Wang, Technical Solution Manager
Created on 04-07-2016 10:41 PM - edited 04-07-2016 10:42 PM
This is exactly what I needed. Many thanks. Solved.
Created 12-15-2018 01:30 AM
Hi @lwang,
Thanks a lot to share this information with us! This is an odd behavior, could you tell me what is the root cause of this, please? Wich CDH version are impacted? At the moment I have found this problem with CDH 5.8 only.
Many thanks in advance for the kind cooperation/availability.
Regards,
Alex
Created on 12-17-2018 01:27 PM - edited 12-17-2018 01:40 PM
Hi @AlexPQ,
The issue was mostly seen during cluster upgrade. Rarely it can oocur in below scenarios:
- backend CM database connectivity going down during command execution
- agent stopping while the command was running
- some unknown reasons
We have some internal jiras associated with the issue. Based on the discussions there, it looks like there were a couple of bugs involved state transition. Both bugs were resolved in CM5.12.0 and higher. This may explain why in your cluster (assuming you have CM 5.8.x as same as your CDH version) you are seeing this issue.
Thanks and hope this helps.
Li Wang, Technical Solution Manager
Created on 01-05-2019 09:37 AM - edited 01-05-2019 09:40 AM
.
Created 01-05-2019 09:44 AM
Hi @lwang
thank you very much for your kind feedback, I'm preparing the CDH and CM upgrade to 5.13.1, in order to avoid this issue.
Thanks again!
Regards,
Alex
Created 04-19-2016 12:11 AM
It should restart cloudera-scm-server services after updated the DB.