After installing a WP droplet server is refusing connection (ERR_CONNECTION_REFUSED) despite DNS is pointing in the right direction. Pinged both IP and domain and it looks good. If I access the web page via ip address the default DigitalOcean page for setting up the WP again is displayed. Ubuntu, Apache, wp sh from DigitalOcean.
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,
Does this also happen for both the domain and the IP address? If it’s only the domain, it could be a DNS issue. If it’s both, it’s likely an Apache or WordPress configuration issue.
Make sure Apache is running:
If it’s inactive, start it with:
Also check your Virtual Host configuration:
Lastly, check Apache logs for errors:
Also, did you use the 1-Click WordPress installation from the Marketplace?
- Bobby
Heya,
Are you sure you followed the initial setup to configure your domain? It sounds to me like you might not have your domain added to your Apache configuration.
Also, make sure your domain actually points to that droplet. You can check your DNS here
https://www.digitalocean.com/community/tools/dns
Heya,
If Apache is failing to start you can examine the logs to retrieve a more detailed error that can help you to understand what is causing the issue.
If you are troubleshooting a Debian or Ubuntu derived system, examine
/var/log/apache2/error.log
for errors using a tool liketail
orless
. For example, to view the last two lines of the error log usingtail
, run the following command:You can find more information here:
https://www.digitalocean.com/community/tutorials/how-to-troubleshoot-common-apache-errors
Hope that this helps!