ubuntu安装SSH服务

2018-07-13 08:54:34来源:编程学习网 阅读 ()

新老客户大回馈,云服务器低至5折

在ubuntu中简单安装运行SSH服务。

SSH程序有客户端openssh-client和服务端openssh-server

想登陆别的电脑SSH,只需安装openssh-client,ubuntu有默认安装。

安装openssh-client:
sudo apt-get install openssh-client

要让本机开放SSH服务就需要安装openssh-server:
sudo apt-get install openssh-server

查看sshserver是否运行:
ps -e |grep ssh

运行sshserver:
sudo /etc/init.d/ssh start

ssh-server配置文件位于/etc/ssh/sshd_config,可以自定义SSH的服务端口。
默认端口是22,自定义端口后需重启SSH服务:
sudo /etc/init.d/ssh stop
sudo /etc/init.d/ssh start

登陆SSH:
ssh [email protected]
username为localhost机器上的用户,需要输入密码。

断开连接:
exit

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:centos下配置ftp允许以root用户身份登录

下一篇:利用Apache的ab命令(ApacheBench)做网站并发访问压力测试

热门词条
热门标签