I'm new to the IIS world but am wondering the best practice for moving a website to another server (along with all settings, etc.)

  • Manually recreate the site on the new server (not maintainable for obvious reasons)
  • Copy the applicationHost.config settings file
  • Use appcmd to make a backup and restore
  • Use MSDeploy to publish the site on the new machine
  • Use a 3rd party tool

Just wondering what others' experiences have been. Thanks!

link|improve this question

feedback

4 Answers

up vote 26 down vote accepted

I'd say export your config

In IIS manager, you need to export the config from server 1. In IIS manager, click the Server node, and go to Shared Configuration under Management and Click “Export Configuration”. You can use a password if you are sending them across the internet, if you are just gonna move them via a USB key then don't sweat it.

Move these files to your new server

administration.config
applicationHost.config
configEncKey.key

On the new server, go back to the “Shared Configuration” section and check “Enable shared configuration.” Enter the location in physical path to these files and apply them.

It should prompt for the encryption password(if you set it) and reset IIS.

BAM! Go have a beer!

link|improve this answer
Awesome, thanks for the tip! I was looking for exactly this. – kurious Jan 29 '09 at 22:27
One small tip.... I kept getting Service Unavailable on my second machine. When checking the Event Viewer it talked about a DLL that it couldn't load. This happened because I had different options selected in Windows Setup on the main box. – hacker Apr 4 '09 at 18:56
Probably should use the Import Server or Site Package instead of just copying the files over, although I haven't tested this either. But I do know there are file paths in the applicationHost.config that won't necessarily be present on the new server, which would cause it to break. Also, you should probably mention that there can't be ANY sites currently in IIS, so this process doesn't clobber currently running configuration. – frogstarr78 Jul 7 '11 at 3:28
feedback

MSDeploy can migrate all content, config, etc. that is what the IIS team recommends. http://www.iis.net/extensions/WebDeploymentTool

link|improve this answer
1  
Thanks Bill -- I had seen the tool but was wary because it was still in Beta. – kurious Feb 3 '09 at 21:26
feedback

Here is a helpful website on using appcmd to export/import a site configuration. http://www.microsoftpro.nl/2011/01/27/exporting-and-importing-sites-and-app-pools-from-iis-7-and-7-5/

link|improve this answer
feedback

use appcmd to export one or all the sites out then reimport into the new server. It could be iis7.0 or 7.5 When you export out using appcmd, the passwords are decrypted, then reimport and they will reencrypt.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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