Skip to content

Commit 50c551a

Browse files
authored
Merge pull request #429 from percona/patrickbirch-patch-1
Update quickstart-yum.md
2 parents 49851ff + 0654abc commit 50c551a

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

docs/quickstart-yum.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Use the [Percona repositories] to install using YUM.
1010

1111
## Installation steps
1212

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.
1414
{.power-number}
1515

1616
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
5353
Complete!
5454
```
5555

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.
5757

5858
```{.bash data-prompt="$"}
5959
$ sudo percona-release setup ps-80
@@ -168,7 +168,7 @@ The examles of the "expected output" depend on the operating system. The followi
168168
mysql>
169169
```
170170

171-
8. The temporary password must be replaced. Run the ALTER USER command tochange the password for the root user. Remember or save the new password.You will need it to log into the server in the next step.
171+
8. The temporary password must be replaced. Run the ALTER USER command tochange the password for the root user. Remember or save the new password. You will need it to log into the server in the next step.
172172

173173
```{.bash data-prompt="mysql>"}
174174
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '[your password]';
@@ -303,7 +303,7 @@ VALUES
303303

304304
## Run a SELECT query
305305

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 for various purposes, such as displaying, filtering, sorting, aggregating, or joining data. SELECT queries do not modify the data in the database but can affect the performance if the 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 for various purposes, such as displaying, filtering, sorting, aggregating, or joining data. SELECT queries do not modify the data in the database but can affect performance if they involve large or complex datasets.
307307

308308

309309

@@ -357,7 +357,7 @@ mysql> SELECT name FROM employees WHERE id = 6;
357357

358358
## Run an INSERT query
359359

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.
361361

362362
Insert a row into a table and then run a [SELECT](#select-query) with a WHERE clause to verify the record was inserted.
363363

@@ -414,11 +414,6 @@ mysql> SELECT id, name, email, country FROM employees WHERE id > 10;
414414
Empty set (0.00 sec)
415415
```
416416

417-
418-
419-
420-
421-
422417
## Troubleshooting:
423418

424419
Installation:
@@ -449,7 +444,7 @@ MySQL startup:
449444

450445
## Secure the installation
451446

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`.
453448

454449
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:
455450

0 commit comments

Comments
 (0)