新しく作成したアカウントに su を実行できるが、直接 ssh が機能しない

新しく作成したアカウントに su を実行できるが、直接 ssh が機能しない

ここでガイダンスが必要です。Linux サーバーに新しいアカウントを作成したところ、奇妙な問題が発生しました。新しいアカウントはログインできず、ssh test@localhost も実行できません。root や他のアカウントでは ssh できます。別のアカウントでログインしているときに、su test を試したところ、テスト アカウントのパスワードの入力を求められて、ログインできました。

[admin1@server]$ su test
Password: 
[test@server]$ exit
exit
[admin1@server]$ ssh test@localhost
test@localhost's password: 
Permission denied, please try again.

[admin1@server test]$ pwd
/home/test
[admin1@server test]$ sudo cat .bash_profile 
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/.local/bin:$HOME/bin

export PATH
[admin1@server test]$

[admin1@server log]$ sudo cat  messages | grep test
Apr  8 12:31:40 server su: (to test) admin1 on pts/0
Apr  8 12:31:40 server su: (to test) admin1 on pts/0
[admin1@server log]$
[admin1@server etc]$ sudo cat sshd_config 
[admin1@server etc]$ 

ちなみにadmin1@serverは動作しています。

答え1

おそらく、PermitRootLogin prohibit-passwordで有効になっています/etc/ssh/sshd_config。これを に切り替えるかyes、(より良い方法として) RSA キーを使用してこのシステムにログインしてください。

関連情報