Remove bad practice

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-12-06 22:15:32 -07:00
parent e4ca15dcc7
commit afee3562b7
No known key found for this signature in database
GPG Key ID: D30DEC268D3FEB17
1 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
# MariaDB-Root-Password-Reset
Simple scripts to reset your MariaDB root password. Please note that for MariaDB 10.4.3+, it will change the authentication for root from unix_socket_authentication to mysql_native_authentication (How it was with MariaDB 10.4.2 and below) <br /> <br />
MariaDB 10.4.3 - 10.6.x: `curl -sSL https://raw.githubusercontent.com/tommytran732/MariaDB-Root-Password-Reset/master/mariadb-104.sh | sudo bash` <br /> <br />
MariaDB 10.4 - 10.4.2: `curl -sSL https://raw.githubusercontent.com/tommytran732/MariaDB-Root-Password-Reset/master/mariadb-104-legacy.sh | sudo bash` <br /> <br />
MariaDB 10.1-10.3 or MySQL 5.7.x: `curl -sSL https://raw.githubusercontent.com/tommytran732/MariaDB-Root-Password-Reset/master/mariadb-103.sh | sudo bash`
Simple scripts to reset your MariaDB root password. Please note that for MariaDB 10.4.3+, it will change the authentication for root from unix_socket_authentication to mysql_native_authentication (How it was with MariaDB 10.4.2 and below).
- MariaDB 10.4.3 - 10.6.x: Use the `mariadb-104.sh` script
- MariaDB 10.4 - 10.4.2: Use the `mariadb-104-legacy.sh` script
- MariaDB 10.1-10.3 or MySQL 5.7.x: Use the `mariadb-103.sh` script.