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
5
votes
5 answers

Peer's Certificate has been revoked

I just upgraded our web server with a renewed cert as our current cert expires later this week. When I browse to our site via FF it is throwing this error: Secure Connection Failed An error occurred during a connection to www.rivworks.com. Peer's…
Keith Barrows
  • 309
  • 1
  • 3
  • 15
5
votes
2 answers

What is the max number of websites / virtual directories one can host on IIS?

Can someone tell me the maximum number of websites / virtual directories I can host on a single IIS? Is there's a difference between IIS 6 and IIS 7? Also what performance and connection limitation should I be worry about.
Vadim
  • 153
  • 1
  • 1
  • 5
5
votes
3 answers

IIS6: Web Site presenting the wrong SSL certificate

Consider an IIS6 installation with multiple Web Sites. Each is intended to be a different subdomain with its own cert (not a wildcard cert). Each has their host-header specified properly. foo.example.com - port 443. Require SSL w/128 bit. Working…
p.campbell
  • 4,407
  • 6
  • 41
  • 51
5
votes
5 answers

Enabling gzip compression in IIS and having it take effect

We've enabled Gzip compression on the server in IIS (IIS6). We've run iisreset. It just doesn't want to take effect. We had this before on another server, and after a little while, it just started working. Is it supposed to "take" right away? If…
Macho Matt
  • 211
  • 4
  • 10
5
votes
5 answers

New Session Failed

We've started to see instances on our Intranet server where for any page the server just responds with the error page 'HTTP/1.1 New Session Failed'. It seems we can fix it by running IISRESET but this feels like we're only treating the symptom. The…
PhilPursglove
  • 442
  • 2
  • 7
  • 17
5
votes
1 answer

IIS 6.0 mitigating BEAST

Recently, my PCI assessor informed me that my servers are vulnerable to BEAST and failed me. I did my homework and I want to change our webservers to prefer RC4 ciphers over CBC. I followed every guide I could find... I changed my reg keys for my…
D3l_Gato
  • 172
  • 1
  • 7
5
votes
2 answers

Is it possible to run IIS7 on Windows Server 2003?

Is it possible to run IIS 7 or IIS 7.5 on Windows Server 2003?
5
votes
1 answer

Rewrite IIS served subdomain with content from other server/port

Our main web server is using IIS 6 and it obviously catches all port 80 traffic and we have another app served on a non-standard port (8443) that is hosted using Apache. For example: http://www.mydomain.com -> IIS6…
Reddog
  • 153
  • 5
5
votes
4 answers

Respond to HTTP OPTIONS with basic auth

We have a web site hosting Office documents behind IIS6 Basic authentication. IE has an authentication token for basic auth, which it presents to download the file. The user clicks "Open", and then Microsoft Office Protocol Discovery does a HTTP…
crb
  • 7,998
  • 1
  • 38
  • 53
5
votes
3 answers

AWStats and Time Taken to serve the Request

I have several IIS 6 web servers I manage and I turn on the time-taken field in the logs. I use AWStats to generate various reports from the log data. One of my developer counterparts has recently asked me to provide a report based on the Time-Taken…
λ Jonas Gorauskas
  • 373
  • 1
  • 4
  • 9
5
votes
2 answers

Mass change Microsoft DNS & IIS server settings

I need to change about 100 DNS records and IIS configurations on a Windows 2003 web server. The GUI doesn't accommodate it and the MS command line tools seem incomplete (for example: dnscmd cannot edit a record, only create). Is there a third…
Antonius Bloch
  • 4,680
  • 6
  • 29
  • 41
5
votes
1 answer

How to allow access by ip address, with fallback to basic authentication in IIS?

I have a number of sites in IIS that I'd like to allow direct access to people in a certain subnet, then require basic authentication for everyone else. Here's the exact same functionality I want in Apache:
Mark Biek
  • 1,927
  • 2
  • 14
  • 12
5
votes
2 answers

IIS6 intranet site using integrated authentication fails to load when accessed externally

I've developed a couple of internal sites for my organization that use integrated authentication. Ultimately we want these sites to be accessible externally to users with domain-joined computers. The sites work as expected on domain computers…
maik
  • 818
  • 2
  • 9
  • 21
5
votes
1 answer

Import IIS6 website configuration into IIS7

I have many websites hosted on IIS6 and I want to migrate them to IIS7. It is enough if the basic configuration (folder, virtual folders inside, hostheaders, ) is migrated. a great part of the configuration is in web.config anyway. It is even okay…
sinni800
  • 263
  • 2
  • 11
5
votes
2 answers

How do I format a text file for IIS Mailroot Pickup so that it sends an e-mail with attachments?

How do I need to format a text file so that it can be read by an SMTP service to send an e-mail that has an attachment? We have a server where we are using II6 SMTP to send mail from a Pickup folder. The goal is to drop a properly formatted text…
Ben McCormack
  • 705
  • 4
  • 9
  • 16
1 2
3
66 67