Java教程

REASON: Ambari Server java process has stopped. Please check the logs for more information.

本文主要是介绍REASON: Ambari Server java process has stopped. Please check the logs for more information.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
 REASON: Ambari Server java process has stopped. Please check the logs for more information.

看日志发现是用户权限问题

在这里插入图片描述

 授下权

grant all privileges on *.* to 'ambari'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION;

grant all privileges on *.* to 'ambari'@'localhost' IDENTIFIED BY '密码' WITH GRANT OPTION;

flush privileges;

再启成功

 

这篇关于REASON: Ambari Server java process has stopped. Please check the logs for more information.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!