ftp user is getting below error while doing ftp:
Waiting for welcome message. Access denied:
Solution:
1. check the user attributes by command
#lsuser -f
2. If the user has tried wrong password then,make unsuccessful login count 0
#chuser unsuccessful_login_count=0
3. When we change password of particular user it will by default activate password attributes specified in the /etc/security/login.cfg file. like ADMCHG flag in /etc/security/passwd
ADMCHG flag = This forces the user to change passwords the next time a login command
As this is ftp user so it will be not able to change the password after first login so we have to disable the password attirbutes
#passwd username
#pwdadm -c
-c Clears all password flags for the user in the /etc/security/passwd file.
Waiting for welcome message. Access denied:
Solution:
1. check the user attributes by command
#lsuser -f
2. If the user has tried wrong password then,make unsuccessful login count 0
#chuser unsuccessful_login_count=0
3. When we change password of particular user it will by default activate password attributes specified in the /etc/security/login.cfg file. like ADMCHG flag in /etc/security/passwd
ADMCHG flag = This forces the user to change passwords the next time a login command
As this is ftp user so it will be not able to change the password after first login so we have to disable the password attirbutes
#passwd username
#pwdadm -c
-c Clears all password flags for the user in the /etc/security/passwd file.
Thanks...
Kiran Jadhav
**Let's Share our knowledge and keep visiting here**
No comments:
Post a Comment