当前位置:   article > 正文

CentOS7中hive与mysql安装_centos7 hive 安装mysql8

centos7 hive 安装mysql8

一、安装前提

  1. 已经在本地下载好的hive安装包(hive3.1.2)
  2. hadoop已经安装好了(hadoop3.2.1)
  3. jdk已经安装好了(jdk1.8)

二、hive安装

  1. 下载路径:

    http://hive.apache.org/downloads.html
    
    • 1
  2. 将下载好的 apache-hive-3.1.2-bin.tar.gz上传到虚拟机上

  3. 解压 apache-hive-3.1.2-bin.tar.gz

    tar -zxvf apache-hive-3.1.2-bin.tar.gz
    
    • 1

    在这里插入图片描述

  4. 将hive移动到opt目录下

    mv apache-hive-3.1.2-bin /opt/
    
    • 1

    在这里插入图片描述

  5. 将apache-hive-3.1.2-bin 更改名字成 hive

    mv apache-hive-3.1.2-bin /opt/hive/
    
    • 1

    在这里插入图片描述

  6. 进入hive目录中的bin目录下启动hive

    cd /hive/bin/
    
    • 1

    在这里插入图片描述
    启动hive:./hive
    在这里插入图片描述

  7. 查看数据库:(第一次使用会出现问题,详情请转到第五部分)

    show databases;
    
    • 1

    在这里插入图片描述

  8. 数据库的操作
    创建数据库:

    show database test;
    
    • 1

    在这里插入图片描述

    使用数据库:
     use test
    创建表: 
    create table students (name string, age int, sex string);
    查看表: 
    show tables;
    查看表结构: 
    desc students;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    在这里插入图片描述

    添加数据: 
    insert into students values ('suger', 20, 'boy');
    查询数据: 
    select * from students;
    
    • 1
    • 2
    • 3
    • 4

    在这里插入图片描述

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号