sudo apt update
sudo apt install openssh-server
安装完成后,使用以下命令启动SSH服务:
sudo systemctl start ssh
设置系统自启动
sudo systemctl enable ssh
查看ssh状态
sudo systemctl status ssh
配置防火墙
sudo ufw allow ssh
一般这个时候就已经完成了
使用以下命令连接客户端
ssh username@hostname_or_ip
如果出现输入正确的密码但是permission denied,检查username是否对应的是你的主机名字
更多的信息可以查看日志:
sudo cat /var/log/auth.log | grep ssh
Or
sudo tail -f /var/log/auth.log