systemctl start sshd.service #启动命令 systemctl restart sshd.service #重启命令 5,以上服务启动运行好,检查服务是否正常启动,命令如下 ps -e | grep sshd 6,检查 22端口 是否开启,命令如下 netstat -ntlp | grep 22 7,以上都没问题后,将ssh服务添加到自启动列表中,命令如下 systemctl enable sshd.service...
centos7 ssh连接慢解决方法 先备份/etc/ssh/sshd_config,备份命令为 cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak 1.su (以root用户登录) 2.vi /etc/ssh/sshd_config (编辑配置文件) 3.输入 / ,查找GSSAPIAuthentication 赋值为no 4.输入 /,查找UseDNS,赋值为 no(该项默认不启用的,要把前面的#...