Report this

What is the reason for this report?

Codeigniter 4 trouble connecting DO Managed Database

Posted on May 8, 2021

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!

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,

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Dark mode is coming soon.