Skip to content

Commit 21d048a

Browse files
committed
Fix a typo and inaccuracies in README.md; update language list
1 parent 21ad624 commit 21d048a

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ This file is available in multiple languages:
5151
- Indonesia: [Indonesia](README.id.md)
5252
- Vietnamese: [Vietnamese](README.vi.md)
5353
- Italian: [Italiano](README.it.md)
54+
- Ukrainian: [Українська](README.uk.md)
5455

5556
If you would like to contribute a translation, please submit a PR. Note though, this does not mean just run it through Google Translate and send that in, those will be rejected. Submit your translated version by adding a new 'README.xx.md' file where xx is the two-letter code of your desired language (based on [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)).
5657

@@ -607,10 +608,10 @@ You have two options, the easiest is to uninstall MySQL and install MariaDB. The
607608
Alternatively, follow these steps:
608609

609610
1. As root, edit the following file: `/etc/mysql/mysql.conf.d/mysqld.cnf`
610-
1. Under the line `[mysqld]`, add the following:
611+
2. Under the line `[mysqld]`, add the following:
611612
`default-authentication-plugin=mysql_native_password`
612-
1. Restart the database: `sudo service mysql restart`
613-
1. Check the authentication method for your database user:
613+
3. Restart the database: `sudo service mysql restart`
614+
4. Check the authentication method for your database user:
614615

615616
```sql
616617
mysql> select Host,User, plugin from mysql.user where mysql.user.User = 'dvwa';
@@ -622,13 +623,13 @@ Alternatively, follow these steps:
622623
1 rows in set (0.00 sec)
623624
```
624625

625-
1. You'll likely see `caching_sha2_password`. If you do, run the following command:
626+
5. You'll likely see `caching_sha2_password`. If you do, run the following command:
626627

627628
```sql
628629
mysql> ALTER USER dvwa@localhost IDENTIFIED WITH mysql_native_password BY 'p@ssw0rd';
629630
```
630631

631-
1. Re-running the check, you should now see `mysql_native_password`.
632+
6. Re-running the check, you should now see `mysql_native_password`.
632633

633634
```sql
634635
mysql> select Host,User, plugin from mysql.user where mysql.user.User = 'dvwa';
@@ -679,7 +680,7 @@ If you see the following error in the Docker logs while trying to start MariaDB,
679680
[Warn] [Entrypoint]: /sys/fs/cgroup///memory.pressure not writable, functionality unavailable to MariaDB
680681
```
681682
682-
You might also need to add the following line to the volums section of your `compose.yml` file:
683+
You might also need to add the following line to the volumes section of your `compose.yml` file:
683684
684685
```
685686
- /sys/fs/cgroup/memory.pressure:/sys/fs/cgroup/memory.pressure

0 commit comments

Comments
 (0)