Linux(ubuntu)如何使用ssh远程登录
本帖最后由 pig2 于 2014-5-1 18:16 编辑SSH服务器,可以通过SSH协议来访问远程服务器,代替telnet和ftp。但是ubuntu默认是不启用root用户也不允许root远程登录的。所以需要先启用root用户
启用root用户:sudo passwd root //修改密码后就启用了。
安装OpenSSH server:
1. 使用apt命令安装openssh server
$ sudo apt-get install openssh-server
2. 可以对 openssh server进行配置
$ sudo vi /etc/ssh/sshd_config
找到PermitRootLogin no一行,改为PermitRootLogin yes
3. 重启 openssh server
$ sudo service ssh restart
4. 客户端如果是ubuntu的话,则已经安装好ssh client,可以用下面的命令连接远程服务器。
$ ssh xxx.xxx.xxx.xxx
如果是windows系统的话,可以查看搭建集群必备:windows如何使用Xshell远程连接(SSH)Linux
以前只知道远程连接,但是不知道需要准备什么,这下有根据了
页:
[1]