Skip to content

Commit 1a84331

Browse files
authored
Update deploy.md
1 parent 3099c23 commit 1a84331

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

  • content/learning-paths/servers-and-cloud-computing/mysql-azure

content/learning-paths/servers-and-cloud-computing/mysql-azure/deploy.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,20 @@ Check the status:
4949
```console
5050
sudo systemctl status mysql
5151
```
52+
The output should look like:
53+
54+
```output
55+
mysql.service - MySQL Community Server
56+
Loaded: loaded (/usr/lib/systemd/system/mysql.service; enabled; preset: enabled)
57+
Active: active (running) since Tue 2025-09-30 20:31:48 UTC; 1min 53s ago
58+
Main PID: 3255 (mysqld)
59+
Status: "Server is operational"
60+
Tasks: 39 (limit: 19099)
61+
Memory: 366.4M (peak: 380.2M)
62+
CPU: 952ms
63+
CGroup: /system.slice/mysql.service
64+
└─3255 /usr/sbin/mysqld
65+
```
5266
You should see `active (running)`.
5367

5468
4. Verify MySQL version
@@ -58,7 +72,7 @@ You check the installed version of MySQL to confirm it’s set up correctly and
5872
```console
5973
mysql -V
6074
```
61-
You should see output similar to the following:
75+
You should see output similar to:
6276

6377
```output
6478
mysql Ver 8.0.43-0ubuntu0.24.04.1 for Linux on aarch64 ((Ubuntu))
@@ -102,7 +116,6 @@ Inside the MySQL shell, run:
102116
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'MyStrongPassword!';
103117
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;
104118
FLUSH PRIVILEGES;
105-
;
106119
EXIT;
107120
```
108121

0 commit comments

Comments
 (0)