Questions tagged [iis-6]

IIS 6.0 is the version of IIS shipped with Windows Server 2003. It uses an architecture substantially different from IIS 5 and earlier versions, called Worker Process Isolation Mode.

IIS 6.0 is the version of IIS shipped with Windows Server 2003. It uses an architecture substantially different from IIS 5 and earlier versions, intended to increase security and performance, called Worker Process Isolation Mode.

Key changes from IIS 5.0:

  • Uses HTTP.SYS as a fast, secure kernel-mode listener, cache, and correctness parser for HTTP requests - instead of InetInfo, which ran ISAPIs and user code as LocalSystem
  • Isolates all user web code into low-privileged processes, which run as Network Service by default
  • Introduces the concept of an Application Pool; Application Pools group IIS applications into worker processes, which helps Admins isolate failures to specific processes and not the whole server (as was the case with InetInfo / Low-isolation applications in IIS 5 and earlier)
  • Introduces the Web Service Extension list, which restricts arbitrary executable code
  • Uses a central App Pool manager service, W3ADM, which monitors the health of App Pools and recycles them when needed.
1000 questions
2
votes
1 answer

IIS Rewrite Multiple URLS to Ports

I have two processes/apps running on port 8888 & port 8890. I can access them in my windows server with http://localhost:8888 & http://localhost:8890. I am currently using IIS GUI for rewriting URLs. Application Request Routing(ARR) & URL Rewrite…
2
votes
3 answers

How do I manage intranet-wide domain name redirection, similar to a hosts file (Windows Server 2003)

I don't even know the correct vocabulary to use to ask this question, so I'll try to describe it as best I can. A previous system admin set up our intranet so that you only have to type one word into the browser and it will correctly send you to…
Jason
  • 247
  • 2
  • 9
2
votes
3 answers

SQL Server max connection settings

On a machine that is running IIS 6.0 and SQL Server 2005, where are the different locations that can limit the max number of database connections?
2
votes
1 answer

IIS6 not doing gzip compression when including Via header in request

I have some static content going through a CDN. I am using IIS6's built in compression (gzip & deflate) for static content and this is working fine when I request it. However, when the CDN makes the initial request for the content, it is not being…
Matt Lacey
  • 143
  • 2
  • 8
2
votes
2 answers

Http gzip compression and performance

I've always tried to enable gzip compression on web servers because it seemed to have very low CPU cost and you obtain a significant data transfer reduction. Now I we have a public server that has not gzip enabled and sometimes it's CPU load is…
Marc Climent
  • 277
  • 7
  • 14
2
votes
3 answers

Aspnet_wp at 100% cpu, but what website?

I have a problem on one webserver (IIS6) where aspnet_wp is using 100% cpu. There are several websites on this server. But how do I tell what website is causing the problem? The sites are in the 2.0 framework, and the server is running in IIS5…
Ed
2
votes
1 answer

Is it possible to mix 32- and 64 bit application pools on IIS6

I have a 64 bit Windows Server 2003 with IIS6, on which I would like to run some 32 bit websites as well as a few websites, that should run 64 bit. I know how to configure my 64 bit IIS6 to run 32 bits, but this causes all the application pools to…
driis
  • 207
  • 1
  • 4
  • 9
2
votes
1 answer

IIS + Integration Windows Authencation: is read/execute permissions for Authenticated_Users safe?

I have an enterprise web application that will integrate with a single sign on (SSO) service via Integrated Windows Authentication (IWA). The SSO service is providing authentication only (not authorization). This web application will handle…
2
votes
1 answer

How to enable TLS for SMTP in II6 on Windows Server 2012 R2

I correctly bought a SSL certificate for my domain www.omniservice2.it from Aruba Business on my server with Windows Server 2012 R2. I correctly installed the certificate in IIS 8 on every site and web application and in fact each of them is…
Lory Lory
  • 131
  • 1
  • 2
  • 10
2
votes
5 answers

How to enforce/redirect HTTP to HTTPS

I've been hosting a domain on a Win2003 server for the last 3 or 4 years, but I now need to make this domain accessible only via HTTPS. I've installed the certificate correctly and it works fine (the server hosts several domains, but this domain is…
Dan
  • 783
  • 1
  • 13
  • 21
2
votes
3 answers

Need outdated URL's in search engines to be redirected to new site in IIS 6

We recently updated our website to a completely different structure on a completely separate server. We are going to be sending all traffic to the new site and I am trying to figure out how to have any requests from search engines that will no…
brian-francis
  • 37
  • 2
  • 5
2
votes
1 answer

How to turn off a username and password prompt on an ASP web site hosted in IIS 6

Software developer here with very little networking experience looking for info on settings in IIS for hosting ASP.NET web apps... We're self-hosting a website via an onsite web server (running Windows Server 2003) with IIS 6.0. Anytime someone…
Kyle
  • 21
  • 3
2
votes
1 answer

SSL stopped working on IIS6 after Windows Update

I have a Windows 2003 image with IIS6 installed that just installed a block of Windows Updates. This webserver was using port 443 and an SSL certificate properly up until this patch, and it will no longer respond at all on port 443 to requests. I…
Jeff Fritz
  • 161
  • 1
  • 5
2
votes
2 answers

IIS SMTP: 550 5.7.1 Unable to relay

I am trying to configure IIS 6 SMTP server for outbound mail. I did the following telnet test from Wikipedia and getting error highlighted in bold below. 220 smtp.example.com Microsoft ESMTP MAIL Service, Version: 6.0.. ready at Me: HELO…
pencilslate
  • 183
  • 2
  • 3
  • 10
2
votes
0 answers

Server is sending back text/html instead of javascript files

I have done a rewrite on the server using these conditions: AngularWildCard: (.) - rewrite to appjs/views/ AngularCondtions: (appjs/modules/.|appjs/agent/|appjs/user/.|content/.|scripts/.) - none When I load the page the server is sending back…
rethabile
  • 21
  • 1