ubuntu下安装启动和卸载SSH
Posted 烟消云散....
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下安装启动和卸载SSH相关的知识,希望对你有一定的参考价值。
2、卸载openssh-server:apt-get remove openssh-server
3、卸载openssh-client: apt-get remove openssh-server
4、安装openssh-server:apt-get install openssh-server
5、安装openssh-client:apt-get install openssh-client
6、安装完成以后,启动服务:sudo /etc/init.d/ssh start
7、启动后,查看服务是否正确启动: ps -e|grep ssh
8、确认ssh-server已经正常工作: netstat -tlp
ubuntu默认并没有安装ssh服务,如果通过ssh链接ubuntu,需要自己手动安装ssh-server。判断是否安装ssh服务,可以通过如下命令进行:
$ ssh localhost
ssh: connect to host localhost port 22: Connection refused
如上所示,表示没有还没有安装,可以通过apt安装,命令如下:
$ sudo apt-get install openssh-server
系统将自动进行安装,安装完成以后,先启动服务:
$ sudo /etc/init.d/ssh start
启动后,可以通过如下命令查看服务是否正确启动
$ ps -e|grep ssh
6212 ? 00:00:00 sshd
如上表示启动ok。注意,ssh默认的端口是22,可以更改端口,更改后先stop,
然后start就可以了。改配置在/etc/ssh/sshd_config下,如下所示。
$ vi /etc/ssh/sshd_config
# Package generated configuration file
# See the sshd(8) manpage for details
# What ports, IPs and protocols we listen for
Port 22
最后,应该是连接的时候了。请看如下命令:
$ ssh exceljava@192.168.158.129
启动、停止和重启SSH:
sudo /etc/init.d/ssh start
sudo /etc/init.d/ssh stop
sudo /etc/init.d/ssh restart
或者
sudo start ssh
sudo stop ssh
sudo restart ssh
卸载SSH
先停掉SSH服务:sudo stop ssh
然后:$ sudo apt-get –purge remove openssh-server
windows下如何使用ssh远程登录ubuntu
转载至:
http://blog.csdn.net/swuteresa/article/details/9377169
http://blog.sina.com.cn/s/blog_7d892a6701016hmo.html
以上是关于ubuntu下安装启动和卸载SSH的主要内容,如果未能解决你的问题,请参考以下文章