Question

Enable MySql for PHP on NGINX after upgrade to Ubuntu 22

I just upgraded my ubuntu from 21 to 22, and everything seemed to go pretty well except for one thing. I have two PHP websites that use MySql databases, but I can’t get PHP to talk to MySql. Both services are up and running, but MySql is not listed when I do a php_info().

I went into /etc/php/7.4/fpm/php.ini and uncommented the following line:

extension=mysqli

and restarted php using

sudo service php7.4-fpm restart

which returned no errors. It also didn’t change anything in the output from the php_info()

Am I missing something completely obvious here?


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
October 2, 2022
Accepted Answer

Hi there,

Have you tried also installing the PHP MySQL extension before uncommenting the line in the php.ini file?

apt install php7.4-mysql

Let me know how it goes!

Best,

Bobby

KFSys
Site Moderator
Site Moderator badge
October 2, 2022

Hi @kimblim,

The MySQLI extension is to let your PHP connect to MySQL and execute actions like CREATE, READ, UPDATE and DELETE.

How are you trying to connect to your Databases? Are you sure it’s not a configuration error?

Try DigitalOcean for free

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

Sign up

Become a contributor for community

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

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.