vote up 1 vote down star
1

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!

flag

2 Answers

vote up 3 vote down check

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|flag
Awesome, thanks for the tip! I was looking for exactly this. – kurious Jan 29 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 at 18:56
vote up 1 vote down

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

link|flag
Thanks Bill -- I had seen the tool but was wary because it was still in Beta. – kurious Feb 3 at 21:26

Your Answer

Get an OpenID
or

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