Member since
12-29-2017
2
Posts
0
Kudos Received
0
Solutions
09-11-2019
03:40 PM
Yes even in my case fstab issue was not there. Rather i could clearly find the issue from datanode logs under /var/log/ and fix the issue. I have a blog on the same as below. Please comment on blog if it helps. https://itdoctorharsha.wordpress.com/2019/08/23/hadoop-data-volume-failures-and-solution-cloudera/
... View more
12-29-2017
12:28 PM
Hi All, I was facing the same issue where echo command was working but cat command was creating problem and locking the account due to extra $ character in password file. When you will cat the password file using -e option you will get an extra $ character at the end cat -e impala_passwd.pwd = mypass1234$ extra $ is culprit. You need to remove it using tr command or create the file in windows using notepad put your password and tranfer it to the linux server and it shall work. impala-shell -l --auth_creds_ok_in_clear --impalad=node2:21000 -u user1 --ldap_password_cmd='cat /home/user1/auto_impala.pwd'
... View more