I am facing this problem when I try to publish my web application on Windows Azure via Visual Studio 2010. I am trying by right click on project and select publish and importing publish profile downloaded from Windows Azure platform.
I am getting this error:
Error 1 Web deployment task failed. (Could not connect to the remote computer ("waws-prod-am2-001.publish.azurewebsites.windows.net"). On the remote computer, make sure that Web Deploy is installed and that the required process ("Web Management Service") is started. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_DESTINATION_NOT_REACHABLE.) 0 0 MeraSungard
When you are trying to publish your web application from VS2010 to Windows Azure Websites, the publish process connect to Windows Azure Websites on specific port which is enabled for Web Deploy service. In VS 2010 if the connection to this service port is failed then VS return error as "Web Deploy is installed........ on remote server. The fact is that the WebDeploy service is already running and other machines could connect to the same server and deploy the problem is specific to your network and your machine.
There are two main place to look for 1) your deployment machine firewall 2) Proxy server if you are behind proxy. Try to change the network related settings locally so you can get it working.
For those that the answer didn't work for (like me). Alternatively you can set an app setting in your Azure Website:
Set WEBSITE_WEBDEPLOY_USE_SCM = false in Azure Management Portal settings (under Website → Configuration → Application Settings). Make sure
false
is in the value field.Download the publish settings again in VS or whatever you use to deploy.
Deploy successfully.
Taken from:
try to run Visual Studio as admin. This solved my problem.
Make sure you don't have a web debugging proxy running which logs all HTTP(s) traffic between your computer and the Internet. My issue was that Fiddler was running because I was debugging a Web API. I was able to publish successfully after closing Fiddler.
For me publishing start working after network reconnect.
I faced the same problem when trying to deploy to Azure from VS2013 update 5. It happens intermittently. Sometimes publishing works, sometimes it doesn't. In my case it turned out to be network related. We use a load balancing router with two WANs connected to it. If the external IP address changes during the deployment process, because the router switched WANs, it fails. Hope that will help someone.
I want to share my solution with the same problem. Also
MsDepSvc (Web Deployment Agent Service)
and WMSvc (Web Management Service)
were running on the remote VM and Visual Studio 2015 still returns an error.
I go to Azure portal
> All Resources
> Find my Network Security Group
and click on it. > Inbound security rules
and add new rule:
Name: your choice.
Source: Any.
Service: Custom
Protocol: Any
Port range: 8172
Action : Allow
Same problem here, slightly different solution. I restrict access to the website using the IP. This is done from app services->Networking->Configure Access Restrictions.
My fix was to add the IP to both tabs, the website tab and the scm tab.
I do not save the password in my publish profile. Even after checking and double checking the password from the portal and entering it when prompted, the publish failed. I knew the problem had something to do with the password because I could enter any bogus password and still get the same exact publish failed error.
What I did was click "Configure" on the publish tab of my project and click on "Validate Connection" on the "Connection" tab after entering the credentials again.
It was able to validate successfully and all subsequent publishes have been successful as well.
来源:https://stackoverflow.com/questions/12471678/not-able-to-publish-website-on-windows-azure-using-publish-through-vs2010