Report this

What is the reason for this report?

Connection Refused on connecting to a remote server

Posted on October 22, 2017

I’m new to web development. I bought a server on DigitalOcean, created a droplet and installed LAMP. I have a simple PHP script to connect to MySQL. Here’s my PHP script(conn.php)

<?php $servername = “xxx.xx.xx.xxx”; $username = “root”; $password = “my_password”; try { $conn = new PDO(“mysql:host=$servername;dbname=mysql”, $username, $password); // set the PDO error mode to exception $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); echo “Connected successfully”; }catch(PDOException $e) { echo "Connection failed: " . $e->getMessage(); } ?> Now, when I try to run on my browser “xxx.xx.xx.xxx/conn.php”, it’s printing

Connection failed: SQLSTATE[HY000] [2002] Connection refused



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.

Is MySQL running? For remote connections, use a SSH tunnel, MySQL is plaintext.

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.