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.

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.