尝试创建重复的 root 用户,无法再连接到服务器

尝试创建重复的 root 用户,无法再连接到服务器

我是 Linux 新手,因此在提供建议时请记住这一点。

我变得过于热心并在这里运行命令:

http://www.shellhacks.com/en/HowTo-Create-USER-with-ROOT-Privileges-in-Linux

useradd -ou 0 -g 0 john
passwd john

现在我尝试按照通常的方式进行连接:

ssh -i yok.pem [email protected] -vv

我得到:

debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 21: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to staging.yok.com [23.23.77.124] port 22.
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file yok.pem type -1
debug1: key_load_public: No such file or directory
debug1: identity file yok.pem-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.9

幸运的是,我仍然有一个与服务器的连接打开。我检查了我的 ~/.ssh 文件夹,文件都有 600 权限。

我需要在这里做什么?我被困住了。

答案1

哇,好吧,你有没有考虑过删除用户?

userdel john

正如其他人提到的那样,通过 ssh 以 root 身份登录是不明智的,重复的 uid 为 0 也是如此。

相关内容