安装CDH过程中所遇到的问题整理

问题一: 

      Exception when creating/dropping database with user 'root' and jdbc url 'jdbc:mysql://CDH101/?useUnicode=true&characterEncoding=UTF-8'
java.sql.SQLException: Access denied for user 'root'@'CDH101' (using password: YES)

原因:

      没有给cdh101授权

处理方法:

     update user set host='%' where host='cdh101';

    flush privileges;

 

问题二:

Command aborted because of exception: Command timed-out after 150 seconds

原因:server机器的内存过少导致的

处理方法:

 停掉server和agent服务,关掉机器,增加内存,开启server和agent服务

 

你可能感兴趣的:(hadoop问题集锦,CDH篇)