Member since
06-23-2017
9
Posts
0
Kudos Received
0
Solutions
10-24-2017
04:16 AM
Check users info in mysql.user. mysql> select User,Password,Host from mysql.user; Normally, create user DDL pattern is like this below. CREATE USER 'peter'@'localhost' IDENTFIED BY 'password'; GRANT ALL PRIGILEGES ON *.* TO 'peter'@'localhost'; CREATE USER 'peter'@'fqdn' IDENTFIED BY 'password'; GRANT ALL PRIGILEGES ON *.* TO 'peter'@'fqdn'; CREATE USER 'peter'@'%' IDENTFIED BY 'password'; GRANT ALL PRIGILEGES ON *.* TO 'peter'@'%'; FLUSH PRIVILEGES;
... View more
07-13-2017
03:54 PM
@Mahendra Malpute You can use chmod -R 755 /user/maria_dev And if you do not want to open up permission on the maria_dev folder, You can either place the file on /tmp with 755 permission or create another directory that is owned by hive:hdfs and place your file there. Another option is placing the file under /user/hive which anyways has the permission.
... View more
06-25-2017
06:19 PM
@Mahendra Malpute'
In your command the path is missing. Your command: # su - hdfs -c "hdfs dfs -ls" . Correct command: # su - hdfs -c "hdfs dfs -ls /user/maria_dev" .
... View more
06-24-2017
06:38 AM
Thanks for helps.
... View more