Error : Could not chdir to home directory /home/user: Permission denied -bash: /home/user/.bash_profile: Permission denied
The error opens the bash prompt instead of user prompt when user tries to login using ssh.
Set the home directory permission to 775
It sets the permission of directory /home 775. Do not give recursive permission, it means the permission of directories inside /home (sub-dirs of /home) should not be 775. They should be 700.
/home should be 775 & directories inside /home should be 700.
If you think it will increase the number of hazardous attempts, then try second solution. Although it is about security too. You should disable the SELinux.
The error opens the bash prompt instead of user prompt when user tries to login using ssh.
Set the home directory permission to 775
$ chmod 775 /home/
It sets the permission of directory /home 775. Do not give recursive permission, it means the permission of directories inside /home (sub-dirs of /home) should not be 775. They should be 700.
/home should be 775 & directories inside /home should be 700.
If you think it will increase the number of hazardous attempts, then try second solution. Although it is about security too. You should disable the SELinux.