IIS 5.0 Getting Started
IIS 5.0 Getting Started
Internet Information Services (IIS) 5.0 is the web server included with Windows 2000 Server. It supports HTTP, FTP, SMTP, and NNTP services.
Installing IIS
- Open Control Panel → Add/Remove Programs → Add/Remove Windows Components.
- Check Internet Information Services (IIS).
- Click Details to select specific components:
- Common Files (required)
- World Wide Web Server
- FTP Server (optional)
- SMTP Service (optional — needed for email relay and Exchange)
- NNTP Service (optional)
- Click OK and then Next. You may be prompted for the Windows 2000 CD.
- After installation, open Internet Services Manager from the Administrative Tools menu.
Default Web Site
IIS creates a default web site with its root at C:\Inetpub\wwwroot. It listens on port 80 for all IP addresses. You can verify it by opening http://localhost/ in a browser — you should see the default IIS welcome page.
Creating a New Web Site
- In Internet Services Manager, right-click the server name → New → Web Site.
- Enter a description (e.g., "Flamenet Intranet").
- Assign an IP address, port, and host header. Use host headers to run multiple sites on port 80.
- Set the home directory path.
- Choose permissions: Read, Run scripts, Execute.
Key Directories
| Path | Purpose |
|---|---|
C:\Inetpub\wwwroot | Default web site root |
C:\Inetpub\ftproot | Default FTP site root |
C:\Inetpub\Scripts | Default scripts directory |
C:\WINNT\System32\inetsrv | IIS binaries and metabase |
C:\WINNT\System32\LogFiles | IIS log files (W3C Extended format) |