I am using Windows 2012 R2 VM machine in Azure. I have read multiple article to setup Filezilla server in this environment. However, I am not successful. Any one faced this issue? Any solution will be greatly appreciated.
-
possible duplicate of [How to Setup FTP on Azure VM](http://stackoverflow.com/questions/18422391/how-to-setup-ftp-on-azure-vm) – astaykov Mar 13 '14 at 17:38
-
1Welcome to StackOverflow! In order to gain maximum from the community, please do your homework first and search for the answers yourself before really posting it! – astaykov Mar 13 '14 at 17:39
-
How to Setup FTP on Azure VM describes the steps for IIS. Unfortunately I couldnt find the correct solution for Filezilla server. – Karthick Mar 13 '14 at 17:56
4 Answers
I'm dealing with the same thing right now. locally the FTP serv works great. remote I cannot establish a passive connection. Based on my research this is because Azure is not set up for Passive-FTP. I am uncertain if we can get FileZilla to operate in a active-FTP mode. Will post back if I ever get to the bottom of it. Mine currently connects and authenticates but 'cannot retrieve directory listing' when it tries to kick over to passive (transfer) mode.

- 564
- 1
- 4
- 11
In addition to checking the Virtual Machine endpoints are open, be sure to also add the appropriate Windows Firewall rules if you have Windows Firewall enabled on your Windows VM.

- 379
- 3
- 4
Yes, We can connect to Azure server via FileZilla Client. Steps:
Login to Azure portal: https://portal.azure.com
Click on App Services.
Select the Site and then click on Get publish profile.
Save the file and open it in notepad.exe.
The file contains 2 <publishProfile> sections. One is for Web Deploy and another for FTP.
Under the <publishProfile> section for FTP make a note of the following values:
publishUrl (hostname only)
userName --------------------------> This is the information you are looking for
userPWD
Add the PublishUrl to Hostname, Username and password in their respective fields.
Connected.
The link will give the detailed description of the steps flow with images.
Thanks

- 39
- 1
- 1
- 8