为什么我无法使用终端以 root 身份连接 Mac?

为什么我无法使用终端以 root 身份连接 Mac?

实际上我必须以管理员身份进行连接:

ssh [email protected] to log into the mac and then use "su" to be as root.

我无法以 root 身份直接连接! 为什么?!?...

答案1

您必须编辑/private/etc/sshd_config并删除该行的注释:

PermitRootLogin yes

以及拥有一个活跃的根帐户(我想你已经有了。)

编辑:

然后你应该取消注释这一行在服务器上,可能在/etc/ssh/sshd_config,然后使用 重新启动 sshd /etc/rc.d/sshd restart

不过,为了安全起见,我建议您不要这种做法,而是在连接后使用su或。sudo

相关内容