背景
由于阿里云三年服务器即将到期.反手买了一台腾讯轻量服务器2C4G6M的.感觉应该足够...
环境
系统:Ubuntu Server 22.04
设置
1.给root用户添加一个密码
sudo passwd root
2.在sshd_config配置参数
sudo vim /etc/ssh/sshd_config
找到以下行
#PermitRootLogin prohibit-password
将其更改为
PermitRootLogin yes
确保以下行也存在,将 PasswordAuthentication
设置为 no
可以增强安全性,但这意味着你将不能通过密码登录 SSH
PasswordAuthentication no
3.保存文件后需要重启ssh
sudo systemctl restart ssh
4.给root用户使用密钥登陆,将pub密钥复制root目录下的
sudo vim ~/.ssh/authorized_keys
评论区