2
使新用户能够通过ssh登录
我已获得一台用于某些计算的服务器。我已经获得了root密码,他们告诉我为自己创建一个帐户。 我使用ssh root@host 并输入了root密码访问了服务器。然后,我使用创建了一个用户sudo useradd -m myname并设置了密码。然后我注销,并尝试ssh做ssh myname@host 但是,在我输入密码后,我的连接立即关闭: Connection to host closed by remote host. Connection to host closed. 我尝试查看host.deny和host.allow文件,但它们似乎没有被修改(它们用#注释掉) 然后,我尝试研究etc/ssh/sshd_config,但是我不知道到底要寻找什么。这些是一些似乎相关的参数: # Authentication: LoginGraceTime 120 PermitRootLogin yes StrictModes yes RSAAuthentication yes PubkeyAuthentication yes #AuthorizedKeysFile %h/.ssh/authorized_keys # Don't read the user's ~/.rhosts and ~/.shosts files IgnoreRhosts yes # For this …