Issue Connection to server using Remote-FTP atom package and Private Keys

给你一囗甜甜゛ 提交于 2019-12-06 04:29:26
Julian Orrego

Put your private key in following path: C:\Users\USER\AppData\Local\atom\app-1.30.0

Replace USER. It seems it looks in this folder for the keys.

The problem is the backslashes. The .ftpconfig file is in JSON format and slash followed by character has a special meaning. To use your ssh key you just have to escape the slashes. In other words change :

C:\Users\user\.atom\server\putty_private_key_sbappsupconvrted.ppk

To :

C:\\Users\\user\\.atom\\server\\putty_private_key_sbappsupconvrted.ppk

Then it will work with no issues.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!