码迷,mamicode.com
首页 > 系统相关 > 详细

Linux学习笔记二:Ubuntu安装SSH(Secure Shell)服务

时间:2017-03-08 10:43:07      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:nec   host   shell   客户端   port   grep   localhost   安装   sudo   

Ubuntu默认是没有安装SSH(Secure Shell)服务,如果想要通过ssh链接到Ubuntu,我们需要手动安装ssh-server。

SSH分客户端ssh-client,服务端ssh-server。

1.判断服务器是否安装ssh服务,可以用如下命令
 ssh localhost
ssh: connect to host localhost port 22: Connection refused  //这个表示还没有安装ssh服务

2.安装命令
sudo apt-get install openssh-server

3.卸载命令
sudo apt-get remove openssh-server

4.检查ssh-server是否正常安装
ps -e | grep ssh
6566 ?        00:00:00 sshd

5.如果没有则可以这样启动:
sudo /etc/init.d/ssh start 或者 service ssh start

Linux学习笔记二:Ubuntu安装SSH(Secure Shell)服务

标签:nec   host   shell   客户端   port   grep   localhost   安装   sudo   

原文地址:http://www.cnblogs.com/sishang/p/6517969.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!