Reputation: 1044
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.
https://i.sstatic.net/xal1D.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?
Upvotes: 57
Views: 24736
Reputation: 1107
For the same solution as Kaspars Ozols presented but for the new Azure Portal you can go to App Services, open the App Service in question and click the "Get publishing profile"
Upvotes: 46
Reputation: 472
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.
Upvotes: 4
Reputation: 7017
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
.
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
.
Upvotes: 98
Reputation: 30903
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.
Upvotes: -2