Some edge dev stuff (#122)
* Adding content * Update en.json * Update README.md * Update TRANSLATIONS.md * Adding lesson tempolates * Fixing code files with each others code in * Update README.md * Adding lesson 16 * Adding virtual camera * Adding Wio Terminal camera capture * Adding wio terminal code * Adding SBC classification to lesson 16 * Adding challenge, review and assignment * Adding images and using new Azure icons * Update README.md * Update iot-reference-architecture.png * Adding structure for JulyOT links * Removing icons * Sketchnotes! * Create lesson-1.png * Starting on lesson 18 * Updated sketch * Adding virtual distance sensor * Adding Wio Terminal image classification * Update README.md * Adding structure for project 6 and wio terminal distance sensor * Adding some of the smart timer stuff * Updating sketchnotes * Adding virtual device speech to text * Adding chapter 21 * Language tweaks * Lesson 22 stuff * Update en.json * Bumping seeed libraries * Adding functions lab to lesson 22 * Almost done with LUIS * Update README.md * Reverting sunlight sensor change Fixes #88 * Structure * Adding speech to text lab for Pi * Adding virtual device text to speech lab * Finishing lesson 23 * Clarifying privacy Fixes #99 * Update README.md * Update hardware.md * Update README.md * Fixing some code samples that were wrong * Adding more on translation * Adding more on translator * Update README.md * Update README.md * Adding public access to the container * First part of retail object detection * More on stock lesson * Tweaks to maps lesson * Update README.md * Update pi-sensor.md * IoT Edge install stuffspull/126/head
parent
8a9703a153
commit
36434c6691
@ -0,0 +1,66 @@
|
||||
# Create a virtual machine running IoT Edge
|
||||
|
||||
In Azure, you can create a virtual machine - a computer in the cloud that you can configure any way you wish and run your own software on it.
|
||||
|
||||
> 💁 You can read more about virtual machines on teh [Virtual Machine page on Wikipedia](https://wikipedia.org/wiki/Virtual_machine).
|
||||
|
||||
## Task - Set up an IoT Edge virtual machine
|
||||
|
||||
1. Run the following command to create a VM that has Azure IoT Edge already pre-installed:
|
||||
|
||||
```sh
|
||||
az deployment group create \
|
||||
--resource-group fruit-quality-detector \
|
||||
--template-uri https://raw.githubusercontent.com/Azure/iotedge-vm-deploy/1.2.0/edgeDeploy.json \
|
||||
--parameters dnsLabelPrefix=<vm_name> \
|
||||
--parameters adminUsername=<username> \
|
||||
--parameters deviceConnectionString="<connection_string>" \
|
||||
--parameters authenticationType=password \
|
||||
--parameters adminPasswordOrKey="<password>"
|
||||
```
|
||||
|
||||
Replace `<vm_name>` with a name for this virtual machine. This needs to be globally unique, so use something like `fruit-quality-detector-vm-` with your name or another value on the end.
|
||||
|
||||
Replace `<username>` and `<password>` with a username and password to use to log in to the VM. These need to be relatively secure, so you can't use admin/password.
|
||||
|
||||
Replace `<connection_string>` with the connection string of your `fruit-quality-detector-edge` IoT Edge device.
|
||||
|
||||
This will create a VM configured as a `DS1 v2` virtual machine. These categories indicate how powerful the machine is, and therefor how much it costs. This VM has 1 CPU and 3.5GB of RAM.
|
||||
|
||||
> 💰 You can see the current pricing of these VMs on the [Azure Virtual Machine pricing guide](https://azure.microsoft.com/pricing/details/virtual-machines/linux/?WT.mc_id=academic-17441-jabenn)
|
||||
|
||||
Once the VM has been created, the IoT Edge runtime will be installed automatically, and configured you connect to your IoT Hub as your `fruit-quality-detector-edge` device.
|
||||
|
||||
1. VMs cost money. At the time of writing, a DS1 VM costs about $0.06 per hour. To keep costs down, you should shut down the VM when you are not using it, and delete it when you are finished with this project.
|
||||
|
||||
To shut down the VM, use the following command:
|
||||
|
||||
```sh
|
||||
az vm deallocate --resource-group fruit-quality-detector \
|
||||
--name <vm_name>
|
||||
```
|
||||
|
||||
Replace `<vm_name>` with the name of your virtual machine.
|
||||
|
||||
> 💁 There is an `az vm stop` command which will stop the VM, but it keeps the computer allocated to you, so you still pay as if it was still running.
|
||||
|
||||
To restart the VM, use the following command:
|
||||
|
||||
```sh
|
||||
az vm start --resource-group fruit-quality-detector \
|
||||
--name <vm_name>
|
||||
```
|
||||
|
||||
Replace `<vm_name>` with the name of your virtual machine.
|
||||
|
||||
You can also configure your VM to automatically shut down at a certain time each day. This means if you forget to shut it down, you won't be billed for more than the time till the automatic shutdown. Use the following command to set this:
|
||||
|
||||
```sh
|
||||
az vm auto-shutdown --resource-group fruit-quality-detector \
|
||||
--name <vm_name> \
|
||||
--time <shutdown_time_utc>
|
||||
```
|
||||
|
||||
Replace `<vm_name>` with the name of your virtual machine.
|
||||
|
||||
Replace `<shutdown_time_utc>` with the UTC time that you want the VM to shut down using 4 digits as HHMM. For example, if you want to shutdown at midnight UTC, you would set this to `0000`. For 7:30PM on the west coast of the USA, you would use 0230 (7:30PM on the US west coast is 2:30AM UTC).
|
Loading…
Reference in new issue