文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Hadoop环境配置中的hive环境配置是怎么样的

2023-06-25 22:01

关注

这篇文章给大家介绍Hadoop环境配置中的hive环境配置是怎么样的,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

将下载的hive压缩包拉到/opt/software/文件夹下

安装包版本:apache-hive-3.1.2-bin.tar.gz

Hadoop环境配置中的hive环境配置是怎么样的

将安装包解压到/opt/module/文件夹中,命令:

cd /opt/software/tar -zxvf 压缩包名 -C /opt/module/

修改系统环境变量,命令:

vi /etc/profile

 在编辑面板中添加如下代码:

export HIVE_HOME=/opt/module/apache-hive-3.1.2-binexport PATH=$PATH:$HADOOP_HOME/sbin:$HIVE_HOME/bin

Hadoop环境配置中的hive环境配置是怎么样的

重启环境配置,命令:

source /etc/profile

修改hive环境变量

cd  /opt/module/apache-hive-3.1.2-bin/bin/

①配置hive-config.sh文件

vi hive-config.sh

在编辑面板中添加如下代码:

export JAVA_HOME=/opt/module/jdk1.8.0_212export HIVE_HOME=/opt/module/apache-hive-3.1.2-binexport HADOOP_HOME=/opt/module/hadoop-3.2.0export HIVE_CONF_DIR=/opt/module/apache-hive-3.1.2-bin/conf

Hadoop环境配置中的hive环境配置是怎么样的

拷贝hive配置文件,命令:

cd  /opt/module/apache-hive-3.1.2-bin/conf/cp hive-default.xml.template hive-site.xml

修改hive配置文件,找到对应位置按一下代码进行修改:

vi hive-site.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet type="text/xsl" href="configuration.xsl"?><configuration>  <property>    <name>javax.jdo.option.ConnectionDriverName</name>    <value>com.mysql.cj.jdbc.Driver</value>    <description>Driver class name for a JDBC metastore</description>  </property><property>    <name>javax.jdo.option.ConnectionUserName</name>    <value>root</value>    <description>Username to use against metastore database</description>  </property><property>    <name>javax.jdo.option.ConnectionPassword</name>    <value>123456</value># 自定义密码    <description>password to use against metastore database</description>  </property><property>    <name>javax.jdo.option.ConnectionURL</name><value>jdbc:mysql://192.168.1.100:3306/hive?useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false&amp;serverTimezone=GMT</value>    <description>      JDBC connect string for a JDBC metastore.      To use SSL to encrypt/authenticate the connection, provide database-specific SSL flag in the connection URL.      For example, jdbc:postgresql://myhost/db?ssl=true for postgres database.    </description>  </property>  <property>    <name>datanucleus.schema.autoCreateAll</name>    <value>true</value>    <description>Auto creates necessary schema on a startup if one doesn't exist. Set this to false, after creating it once.To enable auto create also set hive.metastore.schema.verification=false. Auto creation is not recommended for production use cases, run schematool command instead.</description>  </property><property>    <name>hive.metastore.schema.verification</name>    <value>false</value>    <description>      Enforce metastore schema version consistency.      True: Verify that version information stored in is compatible with one from Hive jars.  Also disable automatic            schema migration attempt. Users are required to manually migrate schema after Hive upgrade which ensures            proper metastore schema migration. (Default)      False: Warn if the version information stored in metastore doesn't match with one from in Hive jars.    </description>  </property><property>    <name>hive.exec.local.scratchdir</name>    <value>/opt/module/apache-hive-3.1.2-bin/tmp/${user.name}</value>    <description>Local scratch space for Hive jobs</description>  </property>  <property><name>system:java.io.tmpdir</name><value>/opt/module/apache-hive-3.1.2-bin/iotmp</value><description/></property>   <property>    <name>hive.downloaded.resources.dir</name><value>/opt/module/apache-hive-3.1.2-bin/tmp/${hive.session.id}_resources</value>    <description>Temporary local directory for added resources in the remote file system.</description>  </property><property>    <name>hive.querylog.location</name>    <value>/opt/module/apache-hive-3.1.2-bin/tmp/${system:user.name}</value>    <description>Location of Hive run time structured log file</description>  </property>  <property>    <name>hive.server2.logging.operation.log.location</name><value>/opt/module/apache-hive-3.1.2-bin/tmp/${system:user.name}/operation_logs</value>    <description>Top level directory where operation logs are stored if logging functionality is enabled</description>  </property>  <property>    <name>hive.metastore.db.type</name>    <value>mysql</value>    <description>      Expects one of [derby, oracle, mysql, mssql, postgres].      Type of database used by the metastore. Information schema &amp; JDBCStorageHandler depend on it.    </description>  </property>  <property>    <name>hive.cli.print.current.db</name>    <value>true</value>    <description>Whether to include the current database in the Hive prompt.</description>  </property>  <property>    <name>hive.cli.print.header</name>    <value>true</value>    <description>Whether to print the names of the columns in query output.</description>  </property>  <property>    <name>hive.metastore.warehouse.dir</name>    <value>/opt/hive/warehouse</value>    <description>location of default database for the warehouse</description>  </property></configuration>

上传mysql驱动包到/opt/module/apache-hive-3.1.2-bin/lib/文件夹下

驱动包:mysql-connector-java-8.0.15.zip,解压后从里面获取jar包

进入数据库,在数据库中新建名为hive的数据库,确保 mysql数据库中有名称为hive的数据库

mysql> create database hive;

初始化元数据库,命令:

schematool -dbType mysql -initSchema

群起,命令:

start-all.sh    Hadoop100上start-yarn.sh    Hadoop101上

启动hive,命令:

hive

检测是否启动成功,命令:

show databases;

出现各类数据库,则启动成功

关于Hadoop环境配置中的hive环境配置是怎么样的就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯