新しく作成されたアカウントにSSHを関連付けることはできません。

新しく作成されたアカウントにSSHを関連付けることはできません。

助ける!

新しく作成されたユーザーを使用してRHEL 7.9サーバーにログインできません。とAllowUsersサービスにもユーザーが追加されました。sshd_configsshd

ユーザーパスワードが正しく設定されていないようです。誰でも助けることができますか?解決策を見つけようとしましたが、まだ何も見つかりませんでした。以下の詳細をご覧ください。ありがとう

[root@server1 security]# useradd test1
[root@server1 security]# passwd test1
Changing password for user test1.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
[root@server1 security]# passwd -S test1
test1 LK 2021-08-26 7 90 7 30 (Password locked.)
[root@server1 security]# passwd -u test1
Unlocking password for user test1.
passwd: Warning: unlocked password would be empty.
passwd: Unsafe operation (use -f to force)
[root@server1 security]# passwd -uf test1
Unlocking password for user test1.
passwd: Success
[root@server1 security]# passwd -S test1
test1 NP 2021-08-26 7 90 7 30 (Empty password.)
[root@server1 security]# passwd test1
Changing password for user test1.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
[root@server1 security]# passwd -S test1
test1 NP 2021-08-26 7 90 7 30 (Empty password.)
[root@server1 security]# cat /etc/passwd | grep test1
test1:x:1011:1011::/home/test1:/bin/bash
[root@server1 security]# cat /etc/shadow | grep test1
test1::18865:7:90:7:30::

UIDには1つの項目しかありません1101

awk -F: '$3=="1011"' /etc/passwd

また、これはスタンドアロンサーバーです。外部認証システムを使用しません。

関連情報