2 回答
TA贡献1776条经验 获得超12个赞
SSH分客户端openssh-client和openssh-server
如果你只是想登陆别的机器的SSH只需要安装openssh-client(ubuntu有默认安装,如果没有则sudo
apt-get install openssh-client),如果要使本机开放SSH服务就需要安装openssh-server
sudo apt-get install openssh-server
然后确认sshserver是否启动了:
ps -e |grep ssh
如果看到sshd那说明ssh-server已经启动了。
如果没有则可以这样启动:sudo /etc/init.d/ssh start 或者 service ssh start
ssh-server配置文件位于/etc/ssh/sshd_config,在这里可以定义SSH的服务端口,默认端口是22,你可以自己定义成其他端口号,如222。
然后重启SSH服务:
sudo
/etc/init.d/ssh stop
sudo /etc/init.d/ssh start
然后使用以下方式登陆SSH:
ssh username@192.168.1.112 username为192.168.1.112 机器上的用户,需要输入密码。
1234567891011121314151617181920212223242526272829303132333435363738 | SSH分客户端openssh-client和openssh-server 如果你只是想登陆别的机器的SSH只需要安装openssh-client(ubuntu有默认安装,如果没有则sudo apt-get install openssh-client) 查看SSH 是否安装 dpkg -l | grep ssh crifan@crifan-ubuntu10$ dpkg -l | grep ssh ii openssh-client 1:5.5p1-4ubuntu5 secure shell (SSH) client, for secure access to remote machines ii ssh-askpass-gnome 1:5.5p1-4ubuntu4 interactive X program to prompt users for a passphrase for ssh-add ubuntu安装openssh-server 1 .在线安装方式 sudo apt-get install openssh-server 2 . 下载文件方式安装 ( 需先下载安装文件 openssh-server_5.5p1-4ubuntu4_i386.deb) sudo dpkg -i openssh-server_5.5p1-4ubuntu4_i386.deb 然后确认sshserver是否启动了: ps -e |grep ssh 如果看到sshd那说明ssh-server已经启动了。 如果没有则可以这样启动:sudo /etc/init.d/ssh start ssh-server配置文件位于/ etc/ssh/sshd_config 在这里可以定义SSH的服务端口,默认端口是22,你可以自己定义成其他端口号,如222。 然后重启SSH服务: sudo /etc/init.d/ssh stop sudo /etc/init.d/ssh start 然后使用以下方式登陆SSH: ssh tuns@192.168.0.100 tuns为192.168.0.100机器上的用户,需要输入密码。 断开连接:exit 安装出现问题 sudo apt-get -y update Now we can install the package again: sudo apt-get install -y ssh and upgrade the entire system (optional): sudo apt-get -y dist-upgrade |
TA贡献1906条经验 获得超10个赞
开启ssh服务
1.查看是否有sshd_config
cat /etc/ssh/sshd_config //查看是否有sshd_config文件
2.如果没有进行安装
sudo apt-get install opensshd-server //安装sshd-server,Ubuntu缺省安装了openssh-client,如果你的没有安装,用apt-get install 进行安装即可。
3.查看sshsever是否启动
ps -e |grep ssh
1207 ? 00:00:00 ssh-agent
21834 ? 00:00:00 sshd
如果看到sshd则表示sshserver已经启动,如果只有ssh-agent,则表示没有启动,用
sudo /etc/init.d/ssh start 启动sshserver
- 2 回答
- 0 关注
- 728 浏览
添加回答
举报