Skip to content

Commit

Permalink
fix: --no-mariadb-socket is DEPRECATED (#1525)
Browse files Browse the repository at this point in the history
--no-mariadb-socket is DEPRECATED; use --mariadb-user-host-login-scope='%' (wildcard) or --mariadb-user-host-login-scope=<myhostscope>, instead.
  • Loading branch information
0xD0M1M0 authored Dec 7, 2024
1 parent e2ffe3b commit beecd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion development/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def create_site_in_bench(args):
"new-site",
f"--db-host=mariadb", # Should match the compose service name
f"--db-type={args.db_type}", # Add the selected database type
f"--no-mariadb-socket",
f"--mariadb-user-host-login-scope=%",
f"--db-root-password=123", # Replace with your MariaDB password
f"--admin-password={args.admin_password}",
]
Expand Down

0 comments on commit beecd99

Please sign in to comment.