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
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!
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.
Hi there,
This might be caused by one of these two reasons:
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: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