Permission Denied error while creating database in hive

后端 未结 2 1202
小鲜肉
小鲜肉 2021-01-14 05:34

I am trying to database in hive, but when I run below query in HIVE:

CREATE DATABASE BIGDATA;

I receive the following error message:

<
2条回答
  •  庸人自扰
    2021-01-14 06:38

    If you are running from Local Mode then you should run this command from hdfs user:

    su hdfs
    

    Then change the permission like below if you want:

    hdfs dfs -chown -R  /user
    

提交回复
热议问题