Hive安装
    在安装Hadoop以后进行

    下载地址:https://mirrors.tuna.tsinghua.edu.cn/apache/hive/hive-3.1.2/

    一、解压安装包
    # 拷贝安装包进Master容器
    docker cp apache-hive-3.1.2-bin.tar.gz Master:/usr/local
    # 进入容器
    docker exec -it Master bash
    cd /usr/local/
    # 解压安装包
    tar xvf apache-hive-3.1.2-bin.tar.gz
    二、修改配置文件
    root@Master:/usr/local/apache-hive-3.1.2-bin/conf# cp hive-default.xml.template hive-site.xml
    root@Master:/usr/local/apache-hive-3.1.2-bin/conf# vim hive-site.xml
    在最前面添加下面配置:

    system:java.io.tmpdir
    /tmp/hive/java


    system:user.name
    ${user.name}

    三、配置Hive相关环境变量
    vim /etc/profile

    _#文本最后添加_export HIVE_HOME=“/usr/local/apache-hive-3.1.2-bin”export PATH=$PATH:$HIVE_HOME/bin
    配置后执行source /etc/profile 生效
    source /etc/profile