From 5de463ca05b4adc6cba5a2c4db6cb74ea1b55d2a Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 9 May 2025 12:27:42 +0200 Subject: [PATCH] Reversed to docker0 interface per review request --- tutorials/mysql_setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/mysql_setup.md b/tutorials/mysql_setup.md index 1817a130..85592c42 100644 --- a/tutorials/mysql_setup.md +++ b/tutorials/mysql_setup.md @@ -79,6 +79,6 @@ bind-address=0.0.0.0 ``` Restart MySQL/MariaDB to apply these changes. This will override the default MySQL configuration, which by default will only accept requests from localhost. Updating this will allow connections on all interfaces, and thus, external connections. Make sure to allow the MySQL port (default 3306) in your firewall. -If your Database and Wings are on the same machine and won't need external access, you can also use the `pterodactyl0` interface IP address rather than `127.0.0.1`. This IP address is from wings' docker interface and can be found in the `config.yml` of your wings instance, the default is `172.18.0.1`. +If your Database and Wings are on the same machine and won't need external access, you can also use the `docker0` interface IP address rather than `127.0.0.1`. This IP address can be found by running `ip addr | grep docker0`, and it likely looks like `172.x.x.x`. Starting with MySQL 8.0.13 / MariaDB 10.11 or above, `bind_address` now also accepts a comma-separated list of interfaces to give more control over what interfaces it will listen on and which not.