-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bee unable to connect to database (but site works fine in browser) #284
Comments
Hi @jenlampton I have a feeling this might depend on how the user is recorded when added. I've just checked in my Lando installation for
so in that case I figure it's not going to matter. I'm wondering whether it will be sufficient to change the default in |
@jenlampton - reading again the backdrop issue, I wonder whether this is down to the way that particular hosts configure their webserver and database server. On my host, (in contrast to lando), it shows using I'm happy to try and do something but I don't know what is needed here. Looking at the backdrop code, it looks to re-write the settings if it fails during the install but does it do anything if things change after installation? I'm wondering whether doing a separate function using |
I don't think it's related to grants, there's nothing in there about
|
@jenlampton - any ideas what you would like me to do (if anything)? |
Recent versions of mysql/mariadb changed the way local connections work so that
@localhost
is no longer allowed in the connection string, and@127.0.0.1
is required instead. We updated core to try both options before refusing a connection.Now my site works as expected, but bee now fails with the following error:
See related core issue backdrop/backdrop-issues#2520
The text was updated successfully, but these errors were encountered: