ERR_CONNECTION_REFUSED is one of the most common connection errors users and website owners face. It indicates that the browser was unable to establish a connection to the server: the request was sent, the IP address was resolved, but the server refused to accept the connection.
When you open a website, the browser performs the following:
If the server actively rejects the connection attempt, the browser returns the following error:
This is not a DNS or timeout error — it’s a direct refusal to connect, triggered by specific conditions.
Step-by-Step Solutions to ERR_CONNECTION_REFUSED
Start by verifying that your internet connection is working correctly. Attempt to access the website using a different browser or device.
Outdated or corrupted DNS cache can cause failed connections. Clear it using the following commands:
ipconfig /flushdns
sudo dscacheutil - flushcache; sudo killall -HUP mDNSResponder
sudo systemd-resolve -flush-caches
Incorrect or slow DNS servers can block or misroute requests. Set your DNS manually to trusted providers:
Change these in your network adapter settings or router configuration panel.
VPN services, proxy configurations, and firewall/antivirus software can interfere with traffic routing or block connections:
Corrupted cookies or cached data may cause access issues. In Chrome, go to:
Settings → Privacy → Clear browsing data
Select “Cached files” and “Cookies”, then clear and restart the browser.
If you’re operating a website or server, ensure that ports 80 (HTTP) and 443 (HTTPS) are open and not blocked by firewall settings. Use the following UFW commands if applicable:
sudo ufw allow 80 sudo ufw allow 443
Ensure the changes are applied by reloading the firewall configuration.
Ensure the web server is up and running:
sudo systemctl status nginx sudo systemctl status apache2
If the service is inactive, restart it:
sudo systemctl restart nginx
An expired, misconfigured, or missing SSL certificate can also result in a refused connection. Use this command to test:
openssl s_client -connect yourdomain.com:443
If server access is available, logs can reveal exact reasons for refused connections:
Check for issues related to configuration, blocked IPs, or service errors.