新安装ubuntu安装ssh并开机启动

作者: 蓝鹰 分类: CentOS 发布时间: 2020-09-28 14:25 ė0 浏览数 6新安装ubuntu安装ssh并开机启动已关闭评论

1、安装openssh-server
sudo apt-get install openssh-server
2、开机自动启动ssh命令
sudo systemctl enable ssh
3、关闭ssh开机自动启动命令
sudo systemctl disable ssh
4、单次开启ssh
sudo systemctl start ssh
5、单次关闭ssh
sudo systemctl stop ssh
6、设置好后重启系统
reboot
7、查看ssh是否启动,看到Active: active (running)即表示成功
sudo systemctl status ssh

配置ssh客户端,去掉PasswordAuthentication yes前面的#号,保存退出

sudo vi /etc/ssh/ssh_config

配置ssh服务器,把PermitRootLogin prohibit-password改成PermitRootLogin yes,保存退出。

最后重启ssh服务
sudo systemctl restart ssh

本文出自 蓝鹰博客,转载时请注明出处及相应链接。

本文永久链接: http://www.lanyingblog.com/blog/2991.html

Ɣ回顶部