发布网友 发布时间:2022-04-23 16:16
共1个回答
热心网友 时间:2022-06-13 11:43
Linux的ssh设置需要修改ssh的配置文件sshd_config,输入命令:
vi
/etc/ssh/sshd_config
在这个文件中,将PermitRootLogin
without-password这一行修改为PermitRootLogin
yes,这一行的意思是“允许root用户用ssh登录”。
再去掉#PasswordAuthentication
no这一行的注释符号#,并把no改为yes,表示用ssh登录时需要密码认证。
修改完配置文件后就可以启动SSH服务了,启动命令为:/etc/init.d/ssh
start