hive3.1.x 启动说明(废弃) 作者:马育民 • 2021-11-23 10:00 • 阅读:10152 详见:[hive教程:启动hadoop、mysql、metastore,测试是否启动成功](https://www.malaoshi.top/show_1IX4KOFiGyjc.html "hive教程:启动hadoop、mysql、metastore,测试是否启动成功") # 启动hadoop ``` /program/bin/hadoop.sh start ``` # 启动 mysql hive 元数据保存在mysql中,需要启动 mysql,执行下面命令: ``` systemctl start mysql ``` 或 ``` service mysql start ``` # 启动 hive 启动 hive metastore 和 hiveserver2 ``` /program/bin/hive.sh start ``` 需要等待,hiveserver2 启动会检测 tez、spark 原文出处:http://malaoshi.top/show_1IX2HLjutY5g.html