Issues Removing Server from Cronicle (v0.9.39) Due to Authentication Failure #750
-
Hello, I am currently facing an issue with my Cronicle setup where one of the servers in the cluster (ip-10-64-10-80) is repeatedly logging authentication failures and has been removed from the cluster. The specific errors in the logs are:
I have reviewed the Wiki and attempted to address this by inspecting the global servers list via the following command:
The output confirmed the presence of the problematic server alongside my intended master server:
I would like to permanently remove |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The problem is with your config files, not the server database. Each Cronicle server has a config file located here (by default):
These files all have a To fix the problem, edit the config files on both machines, and make sure their To remove the server entirely, you can use the Cronicle UI on your master server. Login, then click on the "Admin" tab at the top of the page, then click the "Servers" tab along the side. Find the server you want to remove, and click the "Remove" link on the right side. Then, you can shut down and remove the Cronicle software from the server. Good luck. |
Beta Was this translation helpful? Give feedback.
-
If the server isn't listed in the UI, it has already been removed, and is not part of the cluster any longer. |
Beta Was this translation helpful? Give feedback.
The problem is with your config files, not the server database. Each Cronicle server has a config file located here (by default):
These files all have a
secret_key
property, and they must always match to be part of a cluster. It sounds like your worker server (ip-10-64-10-80
) has a mismatched secret key vs. your master server (ip-10-64-8-80
).To fix the problem, edit the config files on both machines, and make sure their
secret_key
properties match exactly.To remove the server entirely, you can use the Cronicle UI on your master server. Login, then click on the "Admin" tab at the top of the page, then click the "Servers" tab along the side. Find the serve…