ubuntu终端执行schematool -dbType mysql -initSchema执行失败报错org.apache.hadoop.hive.metastore.HiveMetaException: Failed to get schema version. Underlying cause: java.sql.SQLException : Access denied for user 'hive'@'localhost' (using password: YES) SQL Error code: 1045 Use --verbose for detailed stacktrace. *** schemaTool failed ***
时间: 2024-02-26 13:55:20 浏览: 239
hive-0.13.1-cdh5.3.9.tar.gz
这个错误提示是因为 HiveMetaStore 无法访问 MySQL 数据库,导致连接失败。具体原因可能是数据库连接信息配置不正确,或者数据库的权限设置不正确。
你可以按照以下步骤进行排查:
1. 检查 Hive 配置文件中的数据库连接信息是否正确,包括数据库 URL、用户名和密码等。
2. 检查 MySQL 数据库的权限设置是否正确,确保 Hive 用户拥有访问数据库的权限。
3. 检查 MySQL 数据库的防火墙设置,确保 HiveMetaStore 可以访问 MySQL 数据库。
4. 如果你使用的是远程 MySQL 数据库,可以尝试使用 `telnet` 命令测试网络连通性,例如 `telnet mysql_host 3306`。
希望这些解决方案能够帮助你解决问题。如有其他问题或疑问,请随时提出。
阅读全文