Skip to content

Commit cbcaf90

Browse files
authored
Merge pull request MicrosoftDocs#10095 from Microsoft/FromPublicRepo
From public repo
2 parents 8f2c6e1 + d72055b commit cbcaf90

File tree

8 files changed

+47
-43
lines changed

8 files changed

+47
-43
lines changed

articles/hdinsight/hdinsight-storm-develop-java-topology.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ For Storm topologies, the [Exec Maven Plugin](http://mojo.codehaus.org/exec-mave
193193
<includePluginDependencies>false</includePluginDependencies>
194194
<classpathScope>compile</classpathScope>
195195
<mainClass>${storm.topology}</mainClass>
196+
<cleanupDaemonThreads>false</cleanupDaemonThreads>
196197
</configuration>
197198
</plugin>
198199
```

articles/iot-hub/iot-hub-csharp-csharp-getstarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ In this section, you create a .NET console app that simulates a device that send
192192
await deviceClient.SendEventAsync(message);
193193
Console.WriteLine("{0} > Sending message: {1}", DateTime.Now, messageString);
194194

195-
Task.Delay(1000).Wait();
195+
await Task.Delay(1000);
196196
}
197197
}
198198

articles/iot-hub/iot-hub-gateway-kit-c-lesson1-set-up-nuc.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,16 @@ The Azure IoT Gateway SDK package contains the pre-compiled binaries of the SDK
9090

9191
Follow these steps to install the package.
9292

93-
1. Add the IoT cloud repository by running the following commands in a terminal window:
93+
1. Add the IoT Cloud repository by running the following commands in a terminal window:
9494

9595
```bash
96-
rpm --import http://iotdk.intel.com/misc/iot_pub.key
96+
rpm --import http://iotdk.intel.com/misc/iot_pub2.key
9797
smart channel --add IoT_Cloud type=rpm-md name="IoT_Cloud" baseurl=http://iotdk.intel.com/repos/iot-cloud/wrlinux7/rcpl13/ -y
98+
smart channel --add WR_Repo type=rpm-md baseurl=https://distro.windriver.com/release/idp-3-xt/public_feeds/WR-IDP-3-XT-Intel-Baytrail-public-repo/RCPL13/corei7_64/
9899
```
99100

101+
> Enter 'y', when it prompts you to 'Include this channel?'
102+
100103
The `rpm` command imports the rpm key. The `smart channel` command adds the rpm channel to the Smart Package Manager. Before you run the `smart update` command, you will see an output like below.
101104

102105
![rpm and smart channel commands output](media/iot-hub-gateway-kit-lessons/lesson1/rpm_smart_channel.png)
@@ -115,14 +118,14 @@ Follow these steps to install the package.
115118

116119
`packagegroup-cloud-azure` is the name of the package. The `smart install` command is used to install the package.
117120

118-
119121
> Run the following command if you see this error: 'public key not available'
120122
121123
```bash
122124
smart config --set rpm-check-signatures=false
123125
smart install packagegroup-cloud-azure -y
124126
```
125-
127+
> Reboot the Intel NUC if you see this error: 'no package provides util-linux-dev'
128+
126129
After the package is installed, Intel NUC is ready to function as a gateway.
127130

128131
## Run the Azure IoT Gateway SDK "hello_world" sample application
@@ -141,7 +144,7 @@ Let the Hello World application run for a few minutes and then hit the Enter key
141144

142145
> You can ignore any 'invalid argument handle(NULL)' errors that appear after you hit Enter.
143146

144-
You can verify that the gateway ran successfully by opening the log.txt file that is now in your hello_world folder:
147+
You can verify that the gateway ran successfully by opening the log.txt file that is now in your hello_world folder
145148
![log.txt directory view](media/iot-hub-gateway-kit-lessons/lesson1/logtxtdir.png)
146149

147150
Open log.txt using the following command:
-1.33 KB
Loading
-19.2 KB
Loading
Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
---
2-
title: Azure Virtual Machine PowerShell Samples | Microsoft Docs
3-
description: Azure Virtual Machine PowerShell Samples
4-
services: virtual-machines-linux
5-
documentationcenter: virtual-machines
6-
author: neilpeterson
7-
manager: timlt
8-
editor: tysonn
9-
tags: azure-service-management
10-
11-
ms.assetid:
12-
ms.service: virtual-machines-linux
13-
ms.devlang: na
14-
ms.topic: article
15-
ms.tgt_pltfrm: vm-linux
16-
ms.workload: infrastructure
17-
ms.date: 03/01/2017
18-
ms.author: nepeters
19-
20-
---
21-
# Azure Virtual Machine PowerShell samples
22-
23-
The following table includes links to PowerShell scripts samples that create and manage Linux virtual machines.
24-
25-
| | |
26-
|---|---|
27-
|**Create virtual machines**||
28-
| [Create a fully configured virtual machine](./../scripts/virtual-machines-linux-powershell-sample-create-vm.md?toc=%2fpowershell%2fmodule%2ftoc.json) | Creates a resource group, virtual machine, and all related resources.|
29-
| [Create a VM with Docker enabled](./../scripts/virtual-machines-linux-powershell-sample-create-docker-host.md?toc=%2fpowershell%2fmodule%2ftoc.json) | Creates a virtual machine, configures this VM as a Docker host, and runs an NGINX container. |
30-
| [Create a VM and run configuration script](./../scripts/virtual-machines-linux-powershell-sample-create-vm-nginx.md?toc=%2fpowershell%2fmodule%2ftoc.json) | Creates a virtual machine and uses the Azure Custom Script extension to install NGINX. |
31-
| [Create a VM with WordPress installed](./../scripts/virtual-machines-linux-powershell-sample-create-vm-wordpress.md?toc=%2fpowershell%2fmodule%2ftoc.json) | Creates a virtual machine and uses the Azure Custom Script extension to install WordPress. |
32-
|**Monitor virtual machines**||
33-
| [Monitor a VM with Operations Management Suite](./../scripts/virtual-machines-linux-powershell-sample-create-vm-oms.md?toc=%2fpowershell%2fmodule%2ftoc.json) | Creates a virtual machine, installs the Operations Management Suite agent, and enrolls the VM in an OMS Workspace. |
34-
| | |
1+
---
2+
title: Azure Virtual Machine PowerShell Samples | Microsoft Docs
3+
description: Azure Virtual Machine PowerShell Samples
4+
services: virtual-machines-linux
5+
documentationcenter: virtual-machines
6+
author: neilpeterson
7+
manager: timlt
8+
editor: tysonn
9+
tags: azure-service-management
10+
11+
ms.assetid:
12+
ms.service: virtual-machines-linux
13+
ms.devlang: na
14+
ms.topic: article
15+
ms.tgt_pltfrm: vm-linux
16+
ms.workload: infrastructure
17+
ms.date: 03/01/2017
18+
ms.author: nepeters
19+
20+
---
21+
# Azure Virtual Machine PowerShell samples
22+
23+
The following table includes links to PowerShell scripts samples that create and manage Linux virtual machines.
24+
25+
| | |
26+
|---|---|
27+
|**Create virtual machines**||
28+
| [Create a fully configured virtual machine](./../scripts/virtual-machines-linux-powershell-sample-create-vm.md?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json ) | Creates a resource group, virtual machine, and all related resources.|
29+
| [Create a VM with Docker enabled](./../scripts/virtual-machines-linux-powershell-sample-create-docker-host.md?toc=%2fpowershell%2ftoc.json) | Creates a virtual machine, configures this VM as a Docker host, and runs an NGINX container. |
30+
| [Create a VM and run configuration script](./../scripts/virtual-machines-linux-powershell-sample-create-vm-nginx.md?toc=%2fpowershell%2ftoc.json) | Creates a virtual machine and uses the Azure Custom Script extension to install NGINX. |
31+
| [Create a VM with WordPress installed](./../scripts/virtual-machines-linux-powershell-sample-create-vm-wordpress.md?toc=%2fpowershell%2ftoc.json) | Creates a virtual machine and uses the Azure Custom Script extension to install WordPress. |
32+
|**Monitor virtual machines**||
33+
| [Monitor a VM with Operations Management Suite](./../scripts/virtual-machines-linux-powershell-sample-create-vm-oms.md?toc=%2fpowershell%2ftoc.json) | Creates a virtual machine, installs the Operations Management Suite agent, and enrolls the VM in an OMS Workspace. |
34+
| | |

articles/virtual-machines/linux/use-remote-desktop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ Exit the SSH session to your Linux VM. Use the Azure CLI on your local computer
7272
az network nsg rule create --resource-group myResourceGroup \
7373
--nsg-name myNetworkSecurityGroup --name myNetworkSecurityGroupRule \
7474
--protocol tcp --direction inbound --priority 1010 \
75-
--source-address-prefix '*' --source-port-range '*' \
76-
--destination-address-prefix '*' --destination-port-range 3389 \
75+
--source-address-prefix * --source-port-range * \
76+
--destination-address-prefix * --destination-port-range 3389 \
7777
--access allow
7878
```
7979

articles/virtual-machines/windows/sql/virtual-machines-windows-portal-sql-alwayson-availability-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.date: 03/17/2017
1818
ms.author: mikeray
1919

2020
---
21-
# Configure Always On availability group in Azure VM automatically - Resource Manager
21+
# Configure AlwaysOn Availability Group in Azure VM Automatically using Marketplace Template
2222

2323
This tutorial shows you how to create a SQL Server availability group with Azure Resource Manager virtual machines. The tutorial uses Azure blades to configure a template. You can review the default settings, type required settings, and update the blades in the portal as you walk through this tutorial.
2424

0 commit comments

Comments
 (0)