ubuntu install ssh

前端之家收集整理的这篇文章主要介绍了ubuntu install ssh前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

sudo apt-get install openssh-client
sudo apt-get install openssh-server
安装完成以后,先启动服务:sudo /etc/init.d/ssh start
启动后,可以通过“ps -e|grep ssh”查看是否正确启动。

ssh服务默认的端口是22,可以更改端口,
vim /etc/ssh/sshd_config

修改端口号(Port)后,重启ssh服务即可生效,命令如下: sudo /etc/init.d/ssh restart

原文链接:https://www.f2er.com/ubuntu/351793.html

猜你在找的Ubuntu相关文章