Question

App can't connect to a Dev Database

I’m trying to deploy a PHP application (Symfony 6), I attached to it a Dev Database but ever time the deployment fails and, I receive this error:

An exception occurred in the driver: SQLSTATE[HY000] [2002] No such file or directory


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
August 25, 2023
Accepted Answer

Hi there,

This might be caused by one of these two reasons:

  • The Dev databases are only Postgres and the error message indicates that your app is expecting a MySQL connection. Can you confirm if this is the case.
  • Your database credentials might not be using the correct environment variables. The full connection string for your database is also be available as a runtime environment variable named DATABASE_URL which you can use in your application code. You should see this it in the details for your service resource, set to a value such as:
postgres://${db.USERNAME}:${db.PASSWORD}@${db.HOSTNAME}:${db.PORT}/${db.DATABASE}

Also note that this will not be available during the build stage, so if you are running any database migrations you need to run the during the deploy stage.

Let me know how it goes!

If you are still seeing the issue, feel free to share more details on the PHP framework that you are using or the connection string that you are using.

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel