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
4 answers

Is it possible to configure IIS6 to use a custom 404 without the mmc snapin

I have FTP access to a server and I'd like to have custom 404 pages. I don't have access to the management console or any admin rights on the server whatsoever. I understand that apache can use .htaccess files to set custom errorDocuments for…
Matthew Steeples
  • 1,303
  • 1
  • 10
  • 17
2
votes
1 answer

IIS 6 immediate log flush

In troubleshooting an issue with a web service, I need to examine the HTTP log created by IIS 6 on a Win2003 box. As I'm sure you are aware there is a log buffer that prevents writing to file every request for the sake of performance. Can this HTTP…
2
votes
1 answer

How to install (update) SSL certificate for a website in Windows NLB cluster

I wanted to ask what the proper procedure for installing an SSL certificate onto two servers running IIS6 that are in an NLB load balancing configuration. Yesterday I installed the certificates according to what I believed to be the correct…
MrVimes
  • 773
  • 2
  • 14
  • 29
2
votes
2 answers

IIS where ASP pages aren't working

ASP pages don't seem to be working if they contain any ASP code. Is there a way to test the setup of IIS6?
digiguru
  • 235
  • 2
  • 14
2
votes
2 answers

How can I administer IIS 6 from Windows 7?

I'd like to administer my IIS 6 servers from my Windows 7 (RTM) laptop, but the IIS 6 manager won't install. How can I manage my IIS 6 servers?
GuyBehindtheGuy
  • 225
  • 6
  • 13
2
votes
1 answer

How easy is it to sniff the SMTP port of webserver to capture mails

I've got a very basic question that I don't know the answer for. Our company owns a webserver that runs multiple websites and works as a mail server for these websites as well (e.g. to send contact form mails). How easy is it to sniff the SMTP port…
Zeep
  • 107
  • 2
  • 6
2
votes
1 answer

Adding ASP v1 support to IIS6

I have IIS6 running Win2003 Server and (unfortunately) I need to get one terribly old code base running on it. It uses classic ASP v1 and it appears that this particular box has no support for it in IIS6. Hence my question - how do I add one?
Alex N
  • 782
  • 3
  • 10
  • 24
2
votes
1 answer

How does IIS organize its logs? I have multiple W3SVC* directory

I'm not sure how IIS organize its logs, normally it should all reside in c:\windows\system32\logfiles\W3SVC\ But on a Windows 2003 machine, I have both W3SVC and W3SVC436032533 The former contains: And the latter: Does any onke know what the…
daisy
  • 747
  • 4
  • 14
  • 30
2
votes
4 answers

An I/O operation initiated by the Registry failed unrecoverably

Every 10 seconds or so, both our web servers (windows server 2003, running iis6), report the same errors in the event log. > Event Type: Error Event > Source: Application Popup Event > Category: None Event ID: 333 > Date: 2009-08-18 Time: …
2
votes
1 answer

website not accessible with IIS6 while NAT is configured in Windows 2003

I have Windows2003 server configured with IIS 6. Until now it was working fine, but since I enabled NAT for my users to access the internet via this server, the website becomes unavailable. Note that I have two nics on the server one is WAN and 2nd…
2
votes
0 answers

IIS 6 About 5% of request are very slow

We have a IIS 6 web server on Win2003 The avg requests/sec = 200 The avg cpu utilization = 30% The memory 10% full HDD avg time = 5% I have turned on the logging to see time-taken for each request and here what I see: And here is the number of…
Anubis
  • 121
  • 2
2
votes
1 answer

process for replacing old SSL certificate on IIS 6?

Tomorrow SSL certificate for my web site will be expired, I was wondering should I replace new certificate with old one now or should wait for old one to be expired ? I don't want visitors to visit my web site and see the security warning but I also…
user188129
  • 121
  • 1
  • 3
2
votes
0 answers

Website loses connection to database intermittently

Every so often our website loses connection to the sql server and I receive the following errors: "The following error: A network-related or instance-specific error occurred while establishing a connection." "The following error: A transport-level…
2
votes
2 answers

How can I set the Interval of a performance protocol under 1 second with Windows Server 2003?

I want to determine the utilization of the NICs of our server, while very small videos are transferred. The smallest interval which I can set in Performance Monitor is a second. Unfortunately, I need an Interval under 1 second. Is there a way to…
2
votes
4 answers

IIS timeout detection

I'm investigating an issue where a user is uploading a large document to the web server. This is resulting in a time out at their end. However I'm wondering if it is possible to detect this from the server in order to determine if other users are…
Alex Angas
  • 2,017
  • 2
  • 26
  • 37