服务器 发布日期:2024/11/2 浏览次数:1
Ubuntu默认并没有安装ssh服务,如果通过ssh远程连接到Ubuntu,需要自己手动安装ssh-server。
判断是否安装ssh服务,可以通过如下命令进行:
ps -e|grep ssh
输出如下:
zht@zht-Ubuntu:~$ ps -e|grep ssh 2151 "htmlcode">sudo apt-get install openssh-client安装ssh-server命令:
sudo apt-get install openssh-server安装完成以后,先启动服务:
sudo /etc/init.d/ssh start启动后,可以通过“ps -e|grep ssh”查看是否正确启动。
ssh服务默认的端口是22,可以更改端口,使用如下命令打开ssh配置文件:
sudo gedit /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 # Package generated configuration file # See the sshd(8) manpage for details # What ports, IPs and protocols we listen for修改端口号(Port)后,重启ssh服务即可生效,命令如下:
sudo /etc/init.d/ssh restartssh服务启动后,即可登陆,登陆命令格式为:ssh 帐号@IP地址
例如:
ssh test@192.168.135.249根据提示输入test的密码,即可远程登陆。
退出远程登陆命令:exit
原文链接:http://blog.csdn.net/zht666/article/details/9340633
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。