2015-10-09 89 views
1

我一直在試圖設置AWS EC2實例上的一些操場文件的遠程(FTP)訪問權限。創建了一個FTP用戶並安裝了vsftp後,我一直從Sublime/SFTP獲得「連接超時」。我決定嘗試SSH密鑰路由。這是我在SFTP中的服務器設置。它也會得到「連接超時」。這可能是什麼原因?這是在客戶端還是服務器端? 現在,在任何人建議之前,我在AWS安全組/入站規則設置中將端口22作爲我的SSH端口。爲EC2 Amazon Linux實例設置SFTP Sublime Text 3

我刪去了一些條目,如服務器,密碼和鍵名。

// sftp, ftp or ftps 
"type": "sftp", 

"sync_down_on_open": true, 
"sync_same_age": true, 

"host": "ec2-xx-xx-xx-xxx.us-west-2.compute.amazonaws.com", 
"user": "ec2", 
//"password": "******", 
"port": "22", 

"remote_path": "/home/user/", 
//"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": " ~/.ssh/file.pem", 
//"sftp_flags": ["-F", "~/.ssh/file.pem"], 
"sftp_flags": ["-o IdentityFile=/Users/user/.ssh/file.pem"] 
//"sftp_flags": ["-o", IdentityFile="/Users/user/.ssh/file.pem"], 

//"preserve_modification_times": false, 
//"remote_time_offset_in_hours": 0, 
//"remote_encoding": "utf-8", 
//"remote_locale": "C", 
//"allow_config_upload": false, 

}

+0

嘗試註釋掉' 「ssh_key_file傳遞」',看看是否有效。另外,請確保您的'.pem'文件具有正確的權限 - 它們應該是'0400'。 – MattDMo

+0

MattDMo,我在用戶名方法嘗試之前完成了這些事情。如果我使用的是基本的FTP連接,那麼我不需要SSH,我是否正確? – ArtforLife

+0

不,但在設置中顯示您正在使用'sftp'。 – MattDMo

回答

0

這爲我工作:

{ 
    "type": "sftp", 
    "save_before_upload": true, 
    "upload_on_save": false, 
    "sync_down_on_open": false, 
    "sync_skip_deletes": false, 
    "sync_same_age": true, 
    "confirm_downloads": false, 
    "confirm_sync": true, 
    "confirm_overwrite_newer": false, 
    "host": "1.2.3.4", //IPv4 Public IP in Instances > Desription tab of EC2 Dashboard 
    "user": "ec2-user", 
    "port": "22", 
    "remote_path": "/var/www/html/", 
    "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" 
    ], 
    "connect_timeout": 10, 
    "ssh_key_file": "C:/Users/me/Desktop/aws.ppk", //Generated ppk file using PuTTYgen 
}