我正在尝试在 Windows 7 计算机上设置 SSH 连接。我已经使用 PuTTYGen 生成了密钥,并将私钥也加载到 Pageant 中。当我尝试浏览服务器目录时,Sublime 要求我提供用户密码而不是密钥文件的密码,就好像我没有私钥一样。
到目前为止,我已经尝试过互联网上建议的这些东西:
- 将连接类型设置为 sftp 和 ftp,不走运
- 使用 IP 和域名作为主机变量,运气不好
- 使用密钥文件名作为用户名,不走运
- 启用/禁用 connect_timeout,运气不好
- 将私钥移动到不同的位置,包括桌面、
All Users
文件夹、my user folder
根目录C:/
、根目录D:/
、My Documents
文件夹、Sublime 3
文件夹,运气不好 - 当提示输入 [email protected] 的密码时,我尝试输入 PK 的密码,但收到一条错误消息“
Connecting to SFTP server "some.host.com" as "root" ........................................................................ failure (Invalid login/password specified)
”
我现在没有技巧了。我可以确认端口号是正确的,我可以使用该端口号在我的 Mac 上使用 pk 登录。
这是我目前的 Sublime 的设置。有人可以指出我还可以尝试什么吗?
{
// The tab key will cycle through the settings when first created
// Visit http://wbond.net/sublime_packages/sftp/settings for help
// sftp, ftp or ftps
"type": "sftp",
"save_before_upload": true,
"upload_on_save": true,
"sync_down_on_open": true,
"sync_skip_deletes": false,
"sync_same_age": true,
"confirm_downloads": false,
"confirm_sync": true,
"confirm_overwrite_newer": true,
"host": "some.host.com",
"user": "root",
// "password": "",
"port": "222",
"remote_path": "/",
"ignore_regexes": [
"\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
"sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/",
"\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini"
],
//"file_permissions": "664",
//"dir_permissions": "775",
//"extra_list_connections": 0,
"connect_timeout": 30,
"keepalive": 120,
//"ftp_passive_mode": true,
//"ftp_obey_passive_host": false,
"ssh_key_file": "D:/Software/Sublime 3/myKey.ppk",
//"sftp_flags": ["-F", "/path/to/ssh_config"],
//"preserve_modification_times": false,
//"remote_time_offset_in_hours": 0,
//"remote_encoding": "utf-8",
//"remote_locale": "C",
//"allow_config_upload": false,
}
Ps 有人告诉我这是问这个问题的更好地方。我是超级用户的新手,所以如果有更好的方式获得支持,请告诉我。