File tree Expand file tree Collapse file tree
content/learning-paths/servers-and-cloud-computing/mysql-azure Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,6 +49,20 @@ Check the status:
4949``` console
5050sudo 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+ ```
5266You should see ` active (running) ` .
5367
54684 . Verify MySQL version
@@ -58,7 +72,7 @@ You check the installed version of MySQL to confirm it’s set up correctly and
5872``` console
5973mysql -V
6074```
61- You should see output similar to the following :
75+ You should see output similar to:
6276
6377``` output
6478mysql Ver 8.0.43-0ubuntu0.24.04.1 for Linux on aarch64 ((Ubuntu))
@@ -102,7 +116,6 @@ Inside the MySQL shell, run:
102116CREATE USER 'admin '@' localhost' IDENTIFIED BY ' MyStrongPassword!' ;
103117GRANT ALL PRIVILEGES ON * .* TO ' admin' @' localhost' WITH GRANT OPTION;
104118FLUSH PRIVILEGES;
105- ;
106119EXIT;
107120```
108121
You can’t perform that action at this time.
0 commit comments