Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install webdeploy on W2016 IIS 10

How to install web deploy on IIS 10 W2016?

So far I have tried

  1. Using web platform v5 to installation of "web deploy 3.6"
  2. After installation I have updated the web deploy service to run under local admin account.
  3. I have manually turned off the firewall on the server
  4. I have ensured that Management Service is running
  5. Restarted server
  6. I have verified using telnet that the port is open and then using netstat -an that the port is open and I can connect to it
like image 904
cpoDesign Avatar asked Oct 28 '16 10:10

cpoDesign


People also ask

What is IIS Webdeploy?

Web Deploy is an extensible client-server tool for syncing content and configuration to IIS. Web Deploy is used primarily in two scenarios: Developers use it to sync (aka 'publish') a compiled web applications (ASP .

How do you check Webdeploy is installed or not?

Is Web Deploy installed? You can verify web deploy is installed by going to the "Programs and Features" control panel and looking for "Microsoft Web Deploy 2.0" in the list of installed programs. If it is not there, you can install it via the Web Platform Installer by going to the "Products" tab.

How install webservice in IIS?

Right-click Web Server (IIS), and then click Add Role Services. On the Select Role Services dialog, expand the Web Server (Installed) > Application Development (Installed) node, and then select ASP.NET. Click Next and step through the wizard pages. Restart the server.


2 Answers

I have to install new management tool called "Management Service" in Windows Features

In order to install this:

  1. Open server roles / feature
  2. Find Management Tools
  3. Check Management service

Update from other people experience

  • you might need to restart the service
  • Reinstall/Repair the installation of web deploy if you used installer

There is a option to install this feature using power-shell command(check the comment below) by Bart Verkoeijen.

This command is useful in case you are using Desired State Configuration (DSC)

like image 119
cpoDesign Avatar answered Oct 06 '22 10:10

cpoDesign


I just did this on four servers, had to install management service first, then web deploy (or reinstall webdeploy if already installed). The management service install was in a slightly different location under server roles than described in other answers.

Hope this helps someone.

[![enter image description here][1]][1]

like image 29
Kevin Able Avatar answered Oct 06 '22 11:10

Kevin Able