美文网首页
Hortonworks中修改Hive使用postgresql数据

Hortonworks中修改Hive使用postgresql数据

作者: kongxx | 来源:发表于2018-10-10 08:41 被阅读11次

    首先停止Hive服务

    从Ambari管理界面上停止Hive服务

    修改Hive配置

    在Hive -> Configs -> Advanced中,将数据库改为使用已存在的postgresql数据库,然后修改数据库用户,密码和数据库名称。

    创建用户和数据库

    使用postgres用户连接postgresql数据库

    > psql -U postgres
    postgres=# CREATE USER hive WITH PASSWORD 'hive';
    postgres=# CREATE DATABASE hive OWNER hive ENCODING 'UTF8';
    

    安装驱动

    sudo yum install postgresql-jdbc*
    
    cp /usr/share/java/postgresql-jdbc.jar /usr/hdp/2.6.3.0-235/hive/lib
    

    修改/var/lib/pgsql/data/pg_hba.conf文件

    将
    local  all  ambari,mapred md5
    host  all   ambari,mapred 0.0.0.0/0  md5
    host  all   ambari,mapred ::/0 md5
    
    改为
    local  all  ambari,mapred,hive md5
    host  all   ambari,mapred,hive 0.0.0.0/0  md5
    host  all   ambari,mapred.hive ::/0 md5
    

    修改后,重新启动postgresql

    sudo systemctl restart postgresql.service
    

    启动Hive服务

    从Ambari管理界面上启动Hive服务

    相关文章

      网友评论

          本文标题:Hortonworks中修改Hive使用postgresql数据

          本文链接:https://www.haomeiwen.com/subject/wgwuaftx.html