Hi Rupesh,
one thing worth trying is
Create a new unix user id that belongs to hdfs group.
execute following command as unix admin.
useradd rupeshadmin -g hdfs -s /bin/bash
then change password using
passwd rupeshadmin
if you want add this user to other groups then
You can create user with -G option as follows
useradd rupeshadmin -g hdfs -G hadoop,mapred,hbase,zookeeper,hive,sqoop,flume -s /bin/bash
-Cheers,
BA