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

IIS: Can browse to a file, but receive 404 when clicked on to download

I have setup an IIS 6 server to act as a file server. For some of the files, though, clients receive a 404 error. To diagnose the issue, I enabled directory browsing. I can browse directly to one of the files in question, click on the file, and…
Eric J.
  • 762
4
votes
1 answer

Configure IIS 6.0 to serve all file extensions, even unknown ones

I have a problem with IIS: if I ask an unknown file extension, such as .flv, it doesn't serve it and displays "page not found". I can configure it in the Mime Types, but I want to be able to specify a wildcard, like in IIS 7, where I can allow all…
Nir
  • 154
3
votes
2 answers

How do we track web traffic on a Windows 2003 Server running IIS?

Our management would like to know how people are using our website, which we host on our Windows 2003 Server using IIS. Since none of us are really system administrators, we don't know how to go about getting the information out of wherever IIS, or…
Rod
  • 575
  • 3
  • 10
  • 20
3
votes
2 answers

IIS website asking for credentials when viewed outside network

I have configured a website on IIS 6. When I access the website from inside the company network it works fine. When I try to access the website from outside the network, the browser asks for Windows credentials. The application pool is configured…
Gilles
  • 171
2
votes
2 answers

IIS site with multiple IPs?

Is it possible to setup an IIS hosted site so that it is setup with multiple IPs? I'm not sure if this is practicle or if we should stick to a single IP per site. We are using IIS6 on Windows 2003
DDiVita
  • 177
1
vote
1 answer

Flash (swf) download hangs

At work we're a bunch of .NET developers who don't know much about server setups. We've run into a problem that we 'believe' might be an iis6 issue. The problem is consistently reproduceable from some client machines and consistently not…
1
vote
4 answers

IIS settings mysteriously changing "on ther own"

We've been noticing that on one of our development servers that the Authentication settings has been mysteriously been changing from Anonymous to Windows Authentication and the "Execute Permissions" has been changing from Scripts Only to None…
Ivan
  • 95
1
vote
3 answers

ASP.NET application locked up

I have an ASP.NET application that is stuck loading pages (nothing ever happens, no timeout, nothing). In procmon I am seeing a BUFFER OVERFLOW for QueryInformationVolume and QueryAllInformationFile for default.aspx. How can I figure out what is…
1
vote
1 answer

Is there an alternative console for administering websites in IIS6?

I've used many web site hosting services in the past and I've grown very comfortable with the web based site administration tools. Does anyone have a recomendation for a replacement for IIS Managment Console? Perhaps something that would provide a…
1
vote
2 answers

IIS 6: placing a text file in the root of an IP

i have a a bit of a rather odd question and was hoping someone could answer it for me. essentially i need to have a text file placed in the root of an IP address. something like http://aaa.bbb.ccc.ddd/textfile.txt the server is win2k3 sp2 …
Michael Jon Wissekerke
1
vote
1 answer

Abbreviating a URL using IIS6

Our web server is running IIS 6.0 and I have set up an abbreviated URL which points at the IP address of the web server. IIS is configured to bring up a web page located in a certain directory when a request comes in via the abbreviated URL. The…
1
vote
3 answers

IIS6 - How do I move Inetpub to a new partition, after websites have been created?

If a production webserver with several sites has been set up as per the defaults, then websites will be created under C:\INETPUB, and log files will be written to C:\System32\LogFiles. This has implications for disk space on C:as sites grow and…
nray
  • 1,540
1
vote
3 answers

Move a virtual directory in IIS 6

A customer created a virtual directory in IIS 6 as a sub-directory of another virtual directory and now is wondering why his URLs weren't working. Is there some way to move the new virtual directory to the "root" of the website? Do I have to delete…
1
vote
0 answers

How to change the ApplicationId of a Website

We have a small webserver farm with one distributed asp.net website. We use SqlSessionState which needs the ApplicationId to be the same on all Webservers. Otherwise Users hopping from one webserver to another will be given a new Session (but remain…
Thomas
  • 61
1
vote
1 answer

Unchecking "Run WWW service in IIS 5.0 isolation mode" is not persisted in IIS 6

I'm trying to switch an IIS configuration over to using application pools instead of application protection. When I right-click the "Web Sites" node and go into Properties, then Service tab, I uncheck the "Run WWW service in IIS 5.0 isolation mode"…
1
2 3 4 5