Web Publish password not the same as my Azure admin password?

asp.netAzure

asp.net Problem Overview


For whatever reason when I published my server for the first time to Azure some really long password was generated for me that for whatever reason I didn't think would be an issue.

Apparently I need this to publish to my server.

http://i.imgur.com/w5K1ySZ.png

It does not match my Azure server admin password which I can easily change from the management portal. Is there a way to see what this password is and/or change it?

asp.net Solutions


Solution 1 - asp.net

> Is there a way to see what this password is and/or change it?

Click the link in Azure portal -> Your Website -> Dashboard -> Quick glance -> Download the publish profile.

See Azure deployment password

Download the file and your publishing password should be there in plain text in form userPWD="7vasdfa....".

If you want to reset that you can click the link Azure portal -> Your Website -> Dashboard -> Quick glance -> Reset your publish profile credentials.

Solution 2 - asp.net

For the same solution as Kaspars Ozols presented but for the new Azure Portal you can go to the Web app in question and click the "Get publishing profile"

enter image description here

Solution 3 - asp.net

Updating thread since it is now 9/2018.

Goto Azure Portal -> Dashboard -> App Service (that you are deploying to) -> Get publish profile (in the top middle of browser)

Once you have the file downloaded, look for the userPWD arg.

Solution 4 - asp.net

No it is not the same. Reason is pretty clear - security concern!

My "Azure Admin Password" is to manage all my Azure Resources. While when I publish a web site to Azure I would expect to have some other credentials, that do not have to all my azure services.

What you see there is a Deployment Credential. This is best explained in the Wiki Page for the Kudu Project. Note that Azure Web Sites run Kudu.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionstarlord7View Question on Stackoverflow
Solution 1 - asp.netKaspars OzolsView Answer on Stackoverflow
Solution 2 - asp.netJorge Rodrigues dos SantosView Answer on Stackoverflow
Solution 3 - asp.netJeff BlumenthalView Answer on Stackoverflow
Solution 4 - asp.netastaykovView Answer on Stackoverflow