From 28460757f49cf369a67a564a1ede478ded5f3ec2 Mon Sep 17 00:00:00 2001 From: Jcodeerd <68161666+Jcodeerd@users.noreply.github.com> Date: Thu, 14 Sep 2023 23:38:39 +0200 Subject: [PATCH] update mysql command to mariadb --- panel/1.0/additional_configuration.md | 4 ++-- panel/1.0/getting_started.md | 2 +- tutorials/mysql_setup.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/panel/1.0/additional_configuration.md b/panel/1.0/additional_configuration.md index 8fa887f8..6575a724 100644 --- a/panel/1.0/additional_configuration.md +++ b/panel/1.0/additional_configuration.md @@ -127,7 +127,7 @@ reCAPTCHA can easily be disabled using the admin panel. In the Settings, select If you cannot access your panel, you can modify the database directly using the following commands. ```sql -mysql -u root -p +mariadb -u root -p UPDATE panel.settings SET value = 'false' WHERE `key` = 'settings::recaptcha:enabled'; ``` @@ -138,7 +138,7 @@ If possible you should use the panel to update your 2FA settings. If you can't a ### Disable 2FA requirement ```sql -mysql -u root -p +mariadb -u root -p UPDATE panel.settings SET value = 0 WHERE `key` = 'settings::pterodactyl:auth:2fa_required'; ``` diff --git a/panel/1.0/getting_started.md b/panel/1.0/getting_started.md index c8dc90e6..b385ada6 100644 --- a/panel/1.0/getting_started.md +++ b/panel/1.0/getting_started.md @@ -115,7 +115,7 @@ continuing any further. See below to create a user and database for your Pteroda please have a look at [Setting up MySQL](/tutorials/mysql_setup.html). ```sql -mysql -u root -p +mariadb -u root -p # Remember to change 'yourPassword' below to be a unique password CREATE USER 'pterodactyl'@'127.0.0.1' IDENTIFIED BY 'yourPassword'; diff --git a/tutorials/mysql_setup.md b/tutorials/mysql_setup.md index 14f1c642..3c425618 100644 --- a/tutorials/mysql_setup.md +++ b/tutorials/mysql_setup.md @@ -13,7 +13,7 @@ things setup. To do so, simply run the command below and provide the Root MySQL installing MySQL. If you do not remember doing this, chances are you can just hit enter as no password is set. ``` bash -mysql -u root -p +mariadb -u root -p ``` ### Creating a user