vote up 4 vote down star
2

I've always deployed my web applications via FTP (sometimes even xcopy), and then manually run database scripts myself.

I started deploying this way in the 90's, but lately, I've seen a few web apps with installers. I'm starting to question, if I'm locked into an out dated process. I'm a consultant, my apps are usually internal, so I don't worry about distributing and having others installing them.

But I'm curious; does anybody create installers to deploy internal asp.net web applications?

If so, why? (Voluntarily, mandated, or part of an automation process)

And have you had any problems doing it this way?

flag

78% accept rate

8 Answers

vote up 4 vote down check

absolutely. We use it to do all of our apps. That way we create the installer and run it on the qa and uat environments to test and we know exactly what is going to happen in production. There are no guesses as to what order someone might do something in, or if they miss a step. It makes things a lot easier.

Ooh I forgot about the automated process too. We have systems in place (Ant Hill Pro) which automatically deploy it to the proper environments. The qa people don't have to wait for something to be done, because it's all done at 2 am. If they need to rerun the build with updates, the devs check the code in and we push a button, and it's automatically deployed. No waiting for the build engineer, because he's in a meeting or sick or whatever.

link|flag
That's a good point. I first deploy to our business validation server, then copy from the validation server to production. But this is definitely a valid reason to use an installer. – John MacIntyre Jan 28 at 21:58
I never realized how much pain it was to do it manually until we started using installers. It is so much less of a headache to not have to worry about a human component of missing a file or something after it has all been tested. – Kevin Jan 28 at 22:00
"not have to worry about a human component" this is something that bothers me as well. Can I ask you a question? Is your SQLScript embodied into your installer? Or is it seperate? – John MacIntyre Jan 28 at 22:02
I don't think it is in an installer, but it is run through the system. The system compiles all of the scripts into one master script and then runs it agains the database. We make all the scripts "rerunnable" we check to see if the fields exist before adding etc, so we can run the script again. – Kevin Jan 28 at 22:17
vote up 3 vote down

You always want to have an automated way to build and deploy - it greatly reduces the chances of a one-off error if you forget a certain step. Also, it allows you to offload the deploy to someone else easily without having to teach them 100 customized steps. Whether the project is internal or not, all applications should follow best practices.

link|flag
"internal or not" Are you suggesting doing this even for a webhost? If so, how do you run it? Do you get the webhost to run it for you? – John MacIntyre Jan 28 at 22:00
Do you not have access to your hosting machine? If not, it is even more important to have a build that handles all of the deployment steps so you can tell them just to run the install instead of copying these files, running this script, checking this box, etc... – Tai Squared Jan 28 at 22:02
For most all of the internal apps I do. But I have 2 clients with apps on shared webhosting. And with these 2 clients, I definitely don't have access to run something like that ... at least I don't think I do ... I've always assumed I didn't. – John MacIntyre Jan 28 at 22:04
vote up 1 vote down

Personally I'm a bit like the OP; generally I just deploy using FTP, but in saying that typically my applications are internal, or in the case of other projects, 100% managed by me.

I've also been thinking about this lately however, and have started to think about how using proper deployment may improve the process - having to document a detailed install process can be a real pain.

link|flag
Yeah, the big problem with doing it this way, is the whole app is broke during the process, which can take a few minutes doing it manually, and watching every step. – John MacIntyre Jan 28 at 22:08
vote up 1 vote down

I use Powershell and found really easy to automate lots of tasks. You will probably find a bit different at the very begining but at the end you will see that it's all about the power of the .NET libraries !!!

link|flag
So you have a PowerShell script to automate the install for you? That's in interesting idea as well. thx – John MacIntyre Jan 28 at 22:06
yep John so things I remember I do on those scripts are: 1.Backup last build 2.Deletes unnecessary files 3.Configure the web.config 4.Get all .js files and minify them 5.ZIP and FTP After that I run another script to actually install the web site on the desired server. – afgallo Jan 28 at 22:16
vote up 1 vote down

I have use the "Web Setup Project" to create an MSI that installed the output of a "Web Deployment Project" for an internal app. Our server admin wasn't up to the task to doing a 50 step manual install. For my current app, my server admin doesn't like the 'black box' feel of MSI installers and prefers getting a pile of files and a 50 step deployment manual. (See a pattern here? Ask your server admin what he wants.)

The Web Setup Project doesn't make it immediately obvious how to install to anything other than the "Default Website", other than that, it made the installation process repeatable and created a built in way to rollback (by just running the installer from 1 version ago).

This of course assumes that your virtual directory doesn't hold any user modified content-- I wouldn't trust an MSI to properly merge user created and new files.

link|flag
"'black box' feel of MSI installers" I can definitely see that. – John MacIntyre Jan 28 at 22:24
vote up 1 vote down

We use the "XCopy" deploy model here, since the Ops folks have their own method of setting up security on a new web application on the server.

However, we did need to use an installer when we had to install a web application that was using a newer version of Crystal Reports since it had to do something special with a key and we didn't have a full blown version of CR on the server itself. So keep that in mind when working with third party apps, they may need to do some kind of merge module that the MSI handles easily.

link|flag
When you do the xcopy thing, do you just run the sql scripts seperately? Or do you have another process for that? – John MacIntyre Jan 28 at 22:26
Yeah, should have added that two. Typically I inform the DBA that the app is ready, they do the DB migration, then I notify the Ops folks and then they do the creation of the IIS site and copy the files over. – Dillie-O Jan 28 at 23:03
vote up 1 vote down

Yep...we have an app that needs a lot of pre-requisites set up....web service, windows service, user accounts, security, folder creation, GAC bits etc....I rolled it all up into a nice MSI with custom actions that can install and uninstall cleanly. Saved about one hours worth of work to deploy on a new box.

A lot of the other smaller apps are just deployed by doing Publish Website to a local folder then ftp'ing the contents to the target.

link|flag
vote up 1 vote down

It greatly depends upon the scale of your project, your enviornment and your internal user base. I rarely deploy with an msi because we are too small an operation to have multiple environments (except for SharePoint, that's different all together) . We develop and use VS to deploy web apps to a development box, assuming they are approved then we use VS again to deploy to the live box.

The only proviso is that we have multiple copies of the web.config (appended with test, dev and live) and we then delete the suffix off the relevant file depending upon where its been deployed.

It's probably not the best methodology (I know it's not), but it works and it aids rapid deployment of small to medium sized solutions in a small-scale user environment.

link|flag
+1 Thanks for the answer, but I'd argue that you are never too small for a multi-environment setup. It isn't difficult or expensive to setup either, especially not with VMs. – John MacIntyre Aug 6 at 15:21
That depends upon whether you are a resource who is stretched to capacity. Who is going to set these environments up? Maintain them? More to the point who is going to test the code on the test environment once its there? Its all too easy to make your argument. If you are in a position to have that set-up then sure it's better, of course it is! But I can't do it due to being over resourced and there isn't anybody else. – F5ToDebug Aug 6 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.