把linux上的ssh密码登录功能打开
否则可能会出现报错:
Permission denied (publickey).
打开linux ssh服务,打开配置文件
wc@r740:~$ sudo vim /etc/ssh/sshd_config
#PasswordAuthentication no
#change the upper into:
PasswordAuthentication yes
修改后需要重启服务
wc@r740:~$ sudo service sshd restart
如果启动服务的时候报错(找不到sshd命令):说明服务器上没有成功安装sshd
请看解决无法通过ssh远程登录Ubuntu
在本地终端输入命令如下 (这里的 LEVI
是服务器上的用户名,192.168.3.58
是服务器IP地址,请注意根据自己的用户名和IP进行替换)
ssh [email protected]
如果成功,将会提示输入密码(密码为服务器上用户对应的sudo密码)。
(如果登录成功,可以用exit + Enter
退出远程登录)。
如果报错,说明服务器上没有成功安装sshd
请看解决无法通过ssh远程登录Ubuntu
ssh [email protected]
ssh: connect to host 192.168.3.58 port 22: Resource temporarily unavailable
这里我下载的是v0.78.0,安装最新版本就行
在C:\Users\user\.ssh\config
中填写内容如下
C:\Users\user\.ssh\config
里的user
应该替换成自己的windows下的用户名,我的是LEVI
;C:\Users\user\.ssh\
下没有config
文件,那就在该目录下创建config
。Host 219.223.251.67
HostName 219.223.251.67
User wc
PasswordAuthentication yes
StrictHostKeyChecking no
注意修改自己的Host
填写成服务器对应IP地址,User
对应的是自己在服务器上的用户名。
在Remote SSH
的settings.json
里面添加内容图下
"remote.SSH.showLoginTerminal": true,
"remote.SSH.configFile": "C:\\Users\\LEVI\\.ssh\\config",
"remote.SSH.useLocalServer": false,
"remote.SSH.remotePlatform": {
"219.223.251.67": "linux"
},
说明:
"remote.SSH.configFile"
,记得写绝对路径,不然会报错。219.223.251.67
是我的HostName
,"linux"
是我的ssh服务端(远程端)的操作系统类型。如果出现"过程试图写入的管道不存在。"的错误,记得一定看一下报错信息,比如下面这个就是config里面有内容写错了
[21:42:56.035] > C:\\Users\\LEVI\\.ssh\\config: line 2: Bad configuration option: ubuntu
成功连接后会需要你输入密码