网站设计制作系统哪个好,wordpress 图文,域名注册网,做网站步骤详解1.启动ssh服务#xff1b;
sudo /etc/init.d/ssh start若重启ssh服务后#xff0c;还是连接不上#xff0c;继续第2步#xff1b; 2.修改SSH配置文件 /etc/ssh/sshd_config
默认是不允许root远程登录的#xff0c;可以再配置文件开启。
sudo vi /etc/ssh/sshd_config找…1.启动ssh服务
sudo /etc/init.d/ssh start若重启ssh服务后还是连接不上继续第2步 2.修改SSH配置文件 /etc/ssh/sshd_config
默认是不允许root远程登录的可以再配置文件开启。
sudo vi /etc/ssh/sshd_config找到 PermitRootLogin without-password 修改为 PermitRootLogin yes
3.重启ssh服务
service ssh restart