查看CDH日志,可能有多种原因导致7180页面打不开,比如mysql服务未打开,这些在日志里都可以找到,但是下面的原因可能永远发现不了,crond会kill运行中的程序,使python程序被kill掉,spark集群单节点挂掉。
1)check whether there is a crond process by using top command:
top
2)if there is, record the process id and close the service of crond using the following command:
systemctl stop crond
3)kill the process of crond
kill crond_process_id
本文介绍了当遇到CDH集群中7180管理页面无法访问的情况时,如何排查由crond进程导致的问题。通过使用top命令检查crond进程,记录其ID并使用systemctl和kill命令关闭crond服务,从而解决因crond意外终止运行中程序而引发的故障。
631

被折叠的 条评论
为什么被折叠?



