Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set up FTP access to Azure App Service?

I've used Visual Studio to "publish" my website to Azure.

It seems to be working OK. Now I would like to be able to FTP files up to this App Service.

But how do I set up my FTP credentials within this App Service so I can authenticate via FTP?

I was expecting to see an option called "Deployment Credentials" under the "Deployment" area but there simply isn't an option called "Deployment Credentials".

Also, if I click the "Deployment Center" option under "Deployment" I just get a blank part of the screen on the right hand side of the screen. This suggests something should be returned but nothing is.

What am I missing? How do I set up an FTP username and password?

Clarification: I can see how to access the preconfigured ftp username/password. My question was about how to CREATE a new user/password combination.

like image 485
Mark Challice Avatar asked Nov 06 '18 14:11

Mark Challice


People also ask

What is required for FTP in Azure?

The following ports are required to be opened if you are using an NSG or firewall appliance: TCP 21 (FTP) TCP 990 (FTPS) TCP 50000 - 51000 (Passive Mode for data transfer)


1 Answers

In the Azure Portal:

  1. click on your App Service that you'd like to access from FTP.
  2. On the Overview tab for your App Service, look at the top navigation bar and click on the "Get Publish Profile" link. This will download your publish profile.
  3. Open the downloaded publish profile (it's a text file). Your FTP credentials are there.
like image 123
Rob Reagan Avatar answered Oct 16 '22 06:10

Rob Reagan