I've been asked to create a website installation checklist for an ASP.NET website. I have included sections that explain how to setup the following:

  • Installing ASP.NET Session State
  • IIS Configuration
  • Running the website installer

What other sections / aspects to consider should generally be included in a checklist for setting up an ASP.NET website?

link|improve this question

1  
Surely it depends on the circumstance and will vary from site to site. It could be anything from scripts that need running on the database to changing the web.config for go live. – ThePower Jan 9 at 15:18
Yes, I realise the setup requirements will vary between different websites but I wanted to find out what sections could generally be included. – aspdotnetuser Jan 9 at 15:19
feedback

3 Answers

up vote 2 down vote accepted

This all vary's on your intended audience but here's a few ideas.

  • Prerequisites like:

    • .Net framework version.
    • OS, IIS, etc versions
    • Hardware requirements.
  • SQL Related config section if applicable.

  • App pool configuration

  • Security configuration: app pool identity, folder permissions on upload etc, impersonation.

  • Web.config: If you have any special AppSettings that need configuring with install.

EDIT And this is not really part of a checklist but in an install document including a Troubleshooting section would be a great nice to have

link|improve this answer
Thanks for the suggestions :) – aspdotnetuser Jan 9 at 15:30
feedback

grant permission to network services or the user account ur application is using.

link|improve this answer
feedback

The most important one is sanity checking the application/website and make sure it works.

  • If the app write to the file system this should be check as the Network Service needs permissions on the file system to do this.
  • Files have been compiled in release and debugging and tracing has been switch off in the web.config
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.