Skip to content

Commit bea10d0

Browse files
committed
administrivia
1 parent 5bae2a6 commit bea10d0

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

learn-pr/advocates/manage-internet-information-services/4-monitoring.yml renamed to learn-pr/advocates/manage-internet-information-services/4-monitor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### YamlMime:ModuleUnit
2-
uid: learn.devrel.administer-internet-information-services.monitoring
2+
uid: learn.devrel.administer-internet-information-services.monitor
33
title: Monitoring
44
metadata:
55
title: Monitoring
@@ -10,4 +10,4 @@ metadata:
1010
ms.topic: unit
1111
durationInMinutes: 15
1212
content: |
13-
[!include[](includes/4-monitoring.md)]
13+
[!include[](includes/4-monitor.md)]

learn-pr/advocates/manage-internet-information-services/includes/2-remote-administration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To starting, stop, and browsing sites:
1919

2020
- Select **Start** to bring a stopped site online.
2121
- Select **Stop** to take a running site offline.
22-
- Select **Browse *:80 (http)** to open the site in a browser directly from IIS Manager.
22+
- Select **Browse** ***:80 (http)** to open the site in a browser directly from IIS Manager.
2323

2424
The site's status icon changes from a green play arrow (running) to a red square (stopped).
2525

@@ -107,10 +107,10 @@ Once the Web Management Service is installed, you need to enable remote connecti
107107
1. In the Features View, double-click **Management Service** (Management section).
108108
1. In the Management Service page:
109109

110-
- Check **Enable remote connections**.
111-
- Set **IP Address** (All Unassigned or a specific IP).
112-
- Confirm **Port** is **8172**.
113-
- Under **SSL certificate**, select the certificate to secure the management channel. A self-signed certificate is acceptable for internal use, but a CA-issued certificate avoids trust warnings.
110+
- Check **Enable remote connections**.
111+
- Set **IP Address** (All Unassigned or a specific IP).
112+
- Confirm **Port** is **8172**.
113+
- Under **SSL certificate**, select the certificate to secure the management channel. A self-signed certificate is acceptable for internal use, but a CA-issued certificate avoids trust warnings.
114114

115115
1. Select **Apply** in the Actions pane.
116116
1. Select **Start** to start the WMSVC service.

learn-pr/advocates/manage-internet-information-services/includes/3-scripting-automation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Remove-Website -Name "ContosoSite"
6060
Remove-WebAppPool -Name "ContosoPool"
6161
```
6262

63-
You can configuring site settings with Set-ItemProperty and Set-WebConfigurationProperty. For example to change a site's path, disable directory browsing, and add a default document entry, run the following code:
63+
You can configure site settings with Set-ItemProperty and Set-WebConfigurationProperty. For example to change a site's path, disable directory browsing, and add a default document entry, run the following code:
6464

6565
```powershell
6666
# Change a site's root physical path
@@ -170,7 +170,7 @@ appcmd <command> <object-type> [options]
170170

171171
Common object types include: site, app, vdir, apppool, config, backup, request, wp
172172

173-
The following code bloch has a list of AppCmd command examples:
173+
The following code block has a list of AppCmd command examples:
174174

175175
```cmd
176176
REM List all sites and their states

learn-pr/advocates/manage-internet-information-services/includes/4-monitoring.md renamed to learn-pr/advocates/manage-internet-information-services/includes/4-monitor.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ To configure IIS logging, perform the following steps:
4242
1. Double-click **Logging** in the Features View.
4343
1. Set:
4444

45-
- **Format:** W3C (recommended)
46-
- **Directory:** Path for log files
47-
- **Log File Rollover:** Period (Daily recommended) or maximum file size
45+
- **Format:** W3C (recommended)
46+
- **Directory:** Path for log files
47+
- **Log File Rollover:** Period (Daily recommended) or maximum file size
4848

4949
1. Select **Select Fields** to choose which W3C fields to log.
5050
1. Select **Apply** in the Actions pane.
@@ -173,7 +173,7 @@ Alternatives to using IISReset include:
173173

174174
| Scenario | Preferred command |
175175
| --- | --- |
176-
| A single app pool is misbehaving | Restart-WebAppPool -Name "<WebAppPoolName>" |
176+
| A single app pool is misbehaving | Restart-WebAppPool -Name "WebAppDescriptor" |
177177
| A single site needs restarting | Stop-Website then Start-Website |
178178
| Restart only the web service | Restart-Service W3SVC |
179179

@@ -243,7 +243,7 @@ Write-Host " No WAS errors found." -ForegroundColor Green
243243

244244
For IIS servers where downtime isn't acceptable, consider the following architectural patterns:
245245

246-
- **Windows Network Load Balancing (NLB):** Distributes incoming HTTP/HTTPS requests across multiple IIS servers. All nodes must run identical IIS configurations and serve identical web content. You can also use a third party load balancer rather than relying on Windows NLB.
246+
- **Windows Network Load Balancing (NLB):** Distributes incoming HTTP/HTTPS requests across multiple IIS servers. All nodes must run identical IIS configurations and serve identical web content. You can also use load balancers made by organizations other than Microsoft rather than relying on Windows NLB.
247247
- **IIS Shared Configuration:** Stores applicationHost.config on a shared network path (UNC path) so all nodes in a web farm read from a single authoritative configuration. Changes made on one server are immediately effective on all nodes.
248248

249249
To implement the shared configuration, use the following script to copy the relevant config files to a location accessible to each node:

learn-pr/advocates/manage-internet-information-services/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ units:
3333
- learn.devrel.administer-internet-information-services.introduction
3434
- learn.devrel.administer-internet-information-services.remote-administration
3535
- learn.devrel.administer-internet-information-services.scripting-automation
36-
- learn.devrel.administer-internet-information-services.monitoring
36+
- learn.devrel.administer-internet-information-services.monitor
3737
- learn.devrel.administer-internet-information-services.knowledge-check
3838
- learn.devrel.administer-internet-information-services.summary
3939
badge:

0 commit comments

Comments
 (0)