本文最后更新于705 天前,其中的信息可能已经过时,如有错误请发送邮件到3260245294@qq.com
先创建普通用户备用
[root@tc ~]# useradd tc
[root@tc ~]# passwd tc123
Changing password for user test.
New password:
禁止root远程登录
修改配置文件/etc/ssh/sshd_config
[root@tc ~]# vim /etc/ssh/sshd_config
...
PermitRootLogin no # 找到PermitRootLogin这行,改为no
...
修改ssh默认端口号
[root@tc ~]# vim /etc/ssh/sshd_config
...
Port 55555 # 找到该行 更改自己想要的端口
...
重启sshd服务
systemctl restart sshd
如果开启iptables或者firewalld记得开放端口
云服务器的话记得开放安全组