Member since
12-29-2017
2
Posts
0
Kudos Received
0
Solutions
02-12-2018
05:46 AM
In my case I did moved the existing dn directory as it has very less data and started the services. There was no disk failure or issue with fstab file or mounting.
... 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