FreeBSD中设置使root用户可以ssh登陆

初用freeBSD,由于将服务器托管在IDC机房,想使用root登陆系统,因为默认freeBSD不让root以ssh的方式登陆,需要修改/etc/ssh/sshd_config文件
1.cp sshd_config sshd_config.bak #防止修改错误
2.echo "PermitRootLogin yes" >> sshd_config   #允许root登录
  echo "PermitEmptyPasswords no" >> sshd_config   #不允许空密码登录
  echo "PasswordAuthentication yes" >> sshd_config   # 设置是否使用口令验证。
3./etc/rc.d/sshd restart #重启sshd
 
删除以前建立的用户rmuser xxxx
修改用户密码 passwd xxxx

你可能感兴趣的:(职场,休闲)