概述
ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords.
解决办法:
1.在my.cnf mysqld 部分加入 skip-grant-tables 参数。 #跳过数据库权限验证
[mysqld]
skip-grant-tables
2、hive元数据初始化命令,一定记得加用户名 、密码
schematool -initSchema -dbType mysql -userName hive -passWord
hadoop 遇到java.net.ConnectException: to 0.0.0.0:10020 failed on connection
这个问题一般是在hadoop2.x版本里会出现,Hadoop的datanode需要访问namenode的jobhistory server,如果没有修改,则默认为0.0.0.0:10020,则可以修改mapred-site.xml文件:
mapreduce.jobhistory.address
<!-- 配置实际的Master主机名和端口-->
<value>0.0.0.0:10020</value>
mapreduce.jobhistory.webapp.address
<!-- 配置实际的Master主机名和端口-->
<value>0.0.0.0:19888</value>
最后不要忘记了启动jobhistory
$HADOOP_HOME/sbin/mr-jobhistory-daemon.sh start historyserver
最后
以上就是冷艳冥王星为你收集整理的hive元数据初始化遇到的坑的全部内容,希望文章能够帮你解决hive元数据初始化遇到的坑所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复