By kaijehenstra
Hello everyeone. I’am having trouble connecting our Codeigniter 4 website to a digitalocean MySQL database. It it giving the following error without any further information: “CodeIgniter\Database\Exceptions\DatabaseException #8 Unable to connect to the database.”. We have checked connectivity to the database by connecting to it locally. In codeigniter we are using the following database.php config at the moment (with personal information obfuscated.)
public $default = [
'DSN' => '',
'hostname' => 'DB-Cluster.ondigitalocean.com',
'username' => 'DB-Username',
'password' => 'DB-PASSWORD',
'database' => 'DB-Database',
'DBDriver' => 'MySQLi',
'DBPrefix' => '',
'pConnect' => FALSE,
'DBDebug' => (ENVIRONMENT !== 'production'),
'charset' => 'utf8',
'DBCollat' => 'utf8_general_ci',
'swapPre' => '',
'encrypt' => false
'compress' => false,
'strictOn' => false,
'failover' => [],
'port' => 25060,
];
Also the php-apache server is currently running on DO Kubernetes.
I hope someone has an idea on how to fix the issue
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!
Hi there,
What I could suggest is to create a new user with mysql_native_password encryption as described here:
https://docs.digitalocean.com/products/databases/mysql/how-to/manage-users-and-databases/
Also, another thing that I could suggest is if you are using trusted sources to secure your database cluster is to allow the IP address of your server so that it would be authorized to access the managed cluster.
Let me know how it goes. Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.
From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.