Skip to content

Commit 08ee5eb

Browse files
authored
Update tutorial-lamp-stack.md
Acrolinx edits
1 parent 768d96c commit 08ee5eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/virtual-machines/linux/tutorial-lamp-stack.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This setup is for quick tests or proof of concept. For more on the LAMP stack, i
3131

3232
This tutorial uses the CLI within the [Azure Cloud Shell](../../cloud-shell/overview.md), which is constantly updated to the latest version. To open the Cloud Shell, select **Try it** from the top of any code block.
3333

34-
If you choose to install and use the CLI locally, this tutorial requires that you are running the Azure CLI version 2.0.30 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI]( /cli/azure/install-azure-cli).
34+
If you choose to install and use the CLI locally, this tutorial requires that you're running the Azure CLI version 2.0.30 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI]( /cli/azure/install-azure-cli).
3535

3636
## Create a resource group
3737

@@ -47,7 +47,7 @@ az group create --name myResourceGroup --location eastus
4747

4848
Create a VM with the [az vm create](/cli/azure/vm) command.
4949

50-
The following example creates a VM named *myVM* and creates SSH keys if they do not already exist in a default key location. To use a specific set of keys, use the `--ssh-key-value` option. The command also sets *azureuser* as an administrator user name. You use this name later to connect to the VM.
50+
The following example creates a VM named *myVM* and creates SSH keys if they don't already exist in a default key location. To use a specific set of keys, use the `--ssh-key-value` option. The command also sets *azureuser* as an administrator user name. You use this name later to connect to the VM.
5151

5252
```azurecli-interactive
5353
az vm create \
@@ -109,7 +109,7 @@ Run the following command to update Ubuntu package sources and install Apache, M
109109
sudo apt update && sudo apt install lamp-server^
110110
```
111111

112-
You are prompted to install the packages and other dependencies. This process installs the minimum required PHP extensions needed to use PHP with MySQL.
112+
You're prompted to install the packages and other dependencies. This process installs the minimum required PHP extensions needed to use PHP with MySQL.
113113

114114
## Verify Apache
115115

@@ -139,7 +139,7 @@ sudo mysql_secure_installation
139139

140140
You can optionally set up the Validate Password Plugin (recommended). Then, set a password for the MySQL root user, and configure the remaining security settings for your environment. We recommend that you answer "Y" (yes) to all questions.
141141

142-
If you want to try MySQL features (create a MySQL database, add users, or change configuration settings), login to MySQL. This step is not required to complete this tutorial.
142+
If you want to try MySQL features (create a MySQL database, add users, or change configuration settings), login to MySQL. This step isn't required to complete this tutorial.
143143

144144
```bash
145145
sudo mysql -u root -p

0 commit comments

Comments
 (0)