From 15193085bca2600e4b7336234debcf0a5f5e5683 Mon Sep 17 00:00:00 2001 From: Joe Ferguson Date: Wed, 16 Mar 2022 19:03:33 -0500 Subject: [PATCH] Disable binlog by default, addresses https://github.com/laravel/homestead/issues/1775 --- scripts/amd64.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/amd64.sh b/scripts/amd64.sh index 907a76e..eaf6bb5 100644 --- a/scripts/amd64.sh +++ b/scripts/amd64.sh @@ -4,8 +4,8 @@ export DEBIAN_FRONTEND=noninteractive ARCH=$(arch) SKIP_PHP=false -SKIP_MYSQL=false -SKIP_MARIADB=true +SKIP_MYSQL=true +SKIP_MARIADB=false SKIP_POSTGRESQL=false echo "### Settler Build Configuration ###" @@ -558,6 +558,7 @@ else cat > /etc/mysql/conf.d/mysqld.cnf << EOF [mysqld] bind-address = 0.0.0.0 +disable_log_bin default_authentication_plugin = mysql_native_password EOF