-
Notifications
You must be signed in to change notification settings - Fork 85
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
"Wrong host info" or "Can't reach database server at 127.0.0.1:3306" #846
Comments
We'd love to make Bedrock a first-class citizen for Redwood but we're stuck on this weird error! Is there anything we can do to help debug? |
Discovered
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After @coleaeason fixed #818 they already posted, that our code was failing with
Can't reach database server at 127.0.0.1:3306
. I could confirm this now on our system:(from https://github.com/prisma/e2e-tests/pull/610/checks?check_run_id=986450520)
This is output from
/var/log/syslog
after runningbedrock -fork
to confirm Bedrock did indeed start properly.Then the output
Wrong host info
is frommysqladmin -h 127.0.0.1 -u root -proot status
which I tried to add to get the status of the MySQL server.Finally "Error: Error: P1001: Can't reach database server at
127.0.0.1
:3306
" is from when our client in Rust tries to connect to the database.Our script tries to run 3 times, so later I get more output from syslog about this connection attempty via
mysqladmin
and our client:Any idea what is going on here?
The text was updated successfully, but these errors were encountered: