You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/quickstart-yum.md
+6-11
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Use the [Percona repositories] to install using YUM.
10
10
11
11
## Installation steps
12
12
13
-
The examles of the "expected output" depend on the operating system. The following examples are based on Oracle Linux 9.3.
13
+
The "expected output" depends on the operating system. The following examples are based on Oracle Linux 9.3.
14
14
{.power-number}
15
15
16
16
1. Use the YUM package manager to install `percona-release`.
@@ -53,7 +53,7 @@ The examles of the "expected output" depend on the operating system. The followi
53
53
Complete!
54
54
```
55
55
56
-
2. Use the `percona-release` tool to setup the repository for Percona Server for MySQL 8.0.
56
+
2. Use the `percona-release` tool to set up the repository for Percona Server for MySQL 8.0.
57
57
58
58
```{.bash data-prompt="$"}
59
59
$ sudo percona-release setup ps-80
@@ -168,7 +168,7 @@ The examles of the "expected output" depend on the operating system. The followi
168
168
mysql>
169
169
```
170
170
171
-
8. The temporary password must be replaced. Run the ALTER USER command tochange the password forthe root user. Remember or save the new password.You will need it to log into the serverin the next step.
171
+
8. The temporary password must be replaced. Run the ALTER USER command tochange the password forthe root user. Remember or save the new password.You will need it to log into the serverin the next step.
172
172
173
173
```{.bash data-prompt="mysql>"}
174
174
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '[your password]';
@@ -303,7 +303,7 @@ VALUES
303
303
304
304
## Run a SELECT query
305
305
306
-
SELECT queries retrieve data from one or more tables based on specified criteria. They are the most common type of query and can be used forvarious purposes, such as displaying, filtering, sorting, aggregating, or joining data. SELECT queries do not modify the datain the database but can affect the performance ifthe query involves large or complex datasets.
306
+
SELECT queries retrieve data from one or more tables based on specified criteria. They are the most common type of query and can be used forvarious purposes, such as displaying, filtering, sorting, aggregating, or joining data. SELECT queries do not modify the datain the database but can affect performance ifthey involve large or complex datasets.
307
307
308
308
309
309
@@ -357,7 +357,7 @@ mysql> SELECT name FROM employees WHERE id = 6;
357
357
358
358
## Run an INSERT query
359
359
360
-
INSERT queries add new data to a table. They are used to populate the database with new information. INSERT queries can insert one or more rows at a time, depending on the syntax. The query may fail if it violates any constraints or rules defined on the table, such as primary keys, foreign keys, unique indexes, or triggers.
360
+
INSERT queries add new data to a table and populate the database with new information. Depending on the syntax, INSERT queries can insert one or more rows at a time. The query may fail if it violates any constraints or rules defined on the table, such as primary keys, foreign keys, unique indexes, or triggers.
361
361
362
362
Insert a row into a table and then run a [SELECT](#select-query) with a WHERE clause to verify the record was inserted.
363
363
@@ -414,11 +414,6 @@ mysql> SELECT id, name, email, country FROM employees WHERE id > 10;
414
414
Empty set (0.00 sec)
415
415
```
416
416
417
-
418
-
419
-
420
-
421
-
422
417
## Troubleshooting:
423
418
424
419
Installation:
@@ -449,7 +444,7 @@ MySQL startup:
449
444
450
445
## Secure the installation
451
446
452
-
You can increase the security of MySQL by running`sudo mysql_secure installation`.
447
+
You can increase the security of MySQL by running`sudo mysql_secure installation`.
453
448
454
449
After installing MySQL, you should run the `mysql_secure_installation` script to improve the security of your database server. This script helps you perform several important tasks, such as:
0 commit comments