{"id":28698,"date":"2024-01-24T12:30:00","date_gmt":"2024-01-24T18:30:00","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=28698"},"modified":"2023-12-28T04:59:28","modified_gmt":"2023-12-28T10:59:28","slug":"how-to-fix-err_connection_refused","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/","title":{"rendered":"How to Fix ERR_CONNECTION_REFUSED"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div>\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp\" alt=\"how to fix err_connection_refused error\" class=\"wp-image-47727\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp 1024w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused-300x169.webp 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused-150x84.webp 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused-768x432.webp 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>In this tutorial, we will show you how to fix the ERR_CONNECTION_REFUSED error that can happen both when accessing other websites as well as when trying to access your own website. This error shows up when trying to access a webpage and your connection to it gets refused by the server. However, this error can sometimes occur even though the server is not refusing your connection.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">How to Fix ERR_CONNECTION_REFUSED On your Own Web Server or VPS<\/h2>\n\n\n\n<p>If this error occurs only when accessing your own webpage hosted on a Linux VPS, then the web server or the firewall on your server is refusing the connections initiated by your browser. You will need to check whether ports 80 or 443 are open on your VPS. You can do this in different ways depending on which firewall software you are using.<\/p>\n\n\n\n<p>Using <code>firewall-cmd<\/code> we can easily check which ports are currently open by using this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">firewall-cmd --list-ports<\/pre>\n\n\n\n<p>This is what the output should be:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">80\/tcp\n443\/tcp<\/pre>\n\n\n\n<p>Port 80 needs to be open for regular HTTP connections, while port 443 is for secure HTTP connections (HTTPS). If it isn&#8217;t open, then you can use the following commands to add them:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">firewall-cmd --permanent --add-port=80\/tcp\nfirewall-cmd --permanent --add-port=443\/tcp<\/pre>\n\n\n\n<p>Once you do that, you can reload <code>Firewalld<\/code> to apply the changes:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">firewall-cmd --reload\nsuccess<\/pre>\n\n\n\n<p>If you are using <code>iptables<\/code> as your firewall of choice, then the commands are slightly different. You can check which ports are open by using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">iptables -L -n | grep 80\niptables -L -n | grep 443<\/pre>\n\n\n\n<p>If you see these ports in the output of the command together with the ACCEPT term, then you do not need to change anything as your server is already allowing connections on that port. Otherwise, if the rules are set to DROP connections from these ports, you can change that with these two commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">iptables -I INPUT 1 -p tcp -m multiport --dports 80,443 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT\niptables -I INPUT 1  -p tcp -m multiport --dports 80,443 -m conntrack --ctstate ESTABLISHED -j ACCEPT<\/pre>\n\n\n\n<p>If necessary, run these as a superuser (by using sudo) in order to execute them. Then, once done, you can save your iptables configuration with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">iptables-save &gt; \/etc\/iptables.backup<\/pre>\n\n\n\n<p>Now, make sure that your web server is running. The command for this will depend on which Linux distribution you are running, as well as depending on which webserver software you are using.<\/p>\n\n\n\n<p>RHEL-based Distributions (Such as AlmaLinux):<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl status httpd.service\nsystemctl status nginx.service<\/pre>\n\n\n\n<p>Debian-based Distributions (Such as Ubuntu):<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status apache2.service\nsudo systemctl status nginx.service<\/pre>\n\n\n\n<p>If your server is stopped, start it by replacing the word &#8216;status&#8217; with &#8216;start&#8217; in the command corresponding with the webserver you are using.<br>Now, try to open your webpage again and see if the issue is resolved. Now that the ports are open and the webserver is running using those ports, you should be able to access your webpage without any issues.<\/p>\n\n\n\n<p>Or, if you&#8217;re having trouble figuring it out, you can just sign up for our <a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\">Managed VPS Hosting<\/a> services and we&#8217;ll troubleshoot the issue for you once your sites are migrated over. We&#8217;re sure we can fix the connection refused error for you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Fix ERR_CONNECTION_REFUSED On Your Computer<\/h2>\n\n\n\n<p>If you&#8217;re seeing this issue on just one website, then it&#8217;s likely that their website is down temporarily. You can try again in a few minutes or maybe even the next day. Sometimes the website owner won&#8217;t notice that there&#8217;s an issue, so it may take some time for them to fix it.<\/p>\n\n\n\n<p>If this error occurs across several websites, then the issue lies within your browser or your machine. An easy way to check is by trying to access the same websites using a different device, such as your laptop or smartphone. If the error only occurs on your computer and does not affect other devices, then there are a couple of things you can try to fix this.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Wait a few minutes and try again<\/h3>\n\n\n\n<p>With this error, it&#8217;s possible that the server had too many connections and their web server crashed, which closed the port. Waiting a few minutes to try again can sometimes fix the issue.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Clearing your caches<\/h3>\n\n\n\n<p>While this might not seem like a very helpful thing to do, your browser can save error responses mistakenly. You can clear the cache in Google Chrome by following these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click on the More menu in the top right (it&#8217;s an icon with three vertical dots).<\/li>\n\n\n\n<li>Click More tools &gt; Clear browsing data.<\/li>\n\n\n\n<li>At the top, make sure to set the time range to All time.<\/li>\n\n\n\n<li>Only check the checkbox labelled &#8220;Cached images and files&#8221;.<\/li>\n\n\n\n<li>Click Clear data.<\/li>\n<\/ol>\n\n\n\n<p>Once done, try and access the webpage again.<\/p>\n\n\n\n<p>If this doesn&#8217;t help, then you can try deleting your cookies and website data. <\/p>\n\n\n\n<div class=\"wp-block-simple-alerts-for-gutenberg-alert-boxes sab-alert sab-alert-warning\" role=\"alert\">NOTE: Deleting your cookies and website data will reset all login data and cause you to need to log in to all of your websites manually. Luckily, deleting this won&#8217;t delete your saved passwords, making it not too big of an issue.<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Remove any Proxies<\/h3>\n\n\n\n<p>A proxy can also cause the ERR_CONNECTION_REFUSED error. If you enter &#8220;chrome:\/\/settings\/&#8221; into your address bar in Chrome then search for <code>proxy<\/code>, you can scroll down and access your proxy settings. Make sure that your machine does not have a proxy enabled.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Disabling your firewall<\/h3>\n\n\n\n<p>It&#8217;s possible that your firewall is refusing your connection to their server. It&#8217;s worth trying to disable your firewall and then trying again. Then see if the firewall is the cause of the issue. Note that your router might also have a firewall enabled.<\/p>\n\n\n\n<p>If you do any of these (or even a combination of several of them) make sure that you reboot your machine completely to ensure that all settings are saved, and that everything is reset. Once you have rebooted your machine, try and access the websites again. You should now be able to access these webpages with no issues.<\/p>\n\n\n\n<p>That&#8217;s all we have for you &#8211; this should almost certainly fix your ERR_CONNECTION_REFUSED error. If you like this post on <strong>how to fix ERR_CONNECTION_REFUSED error<\/strong>, please share it with your friends through social networks. Alternatively, simply leave a comment. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to fix the ERR_CONNECTION_REFUSED error that can happen both when accessing other &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Fix ERR_CONNECTION_REFUSED\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#more-28698\" aria-label=\"Read more about How to Fix ERR_CONNECTION_REFUSED\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":47727,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1701,13,1707],"tags":[1969],"class_list":["post-28698","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-networking-and-domains","category-tutorials","category-web-servers","tag-errors","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Fix ERR_CONNECTION_REFUSED | RoseHosting<\/title>\n<meta name=\"description\" content=\"Are you seeing ERR_CONNECTION_REFUSED in your browser? We&#039;ll show you how to fix ERR_CONNECTION_REFUSED, with our simple guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix ERR_CONNECTION_REFUSED\" \/>\n<meta property=\"og:description\" content=\"How to Fix ERR_CONNECTION_REFUSED | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-24T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Fix ERR_CONNECTION_REFUSED\",\"datePublished\":\"2024-01-24T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/\"},\"wordCount\":996,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/how-to-fix-err-connection-refused.webp\",\"keywords\":[\"errors\"],\"articleSection\":[\"Networking and Domains\",\"Tutorials\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/\",\"name\":\"How to Fix ERR_CONNECTION_REFUSED | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/how-to-fix-err-connection-refused.webp\",\"datePublished\":\"2024-01-24T18:30:00+00:00\",\"description\":\"Are you seeing ERR_CONNECTION_REFUSED in your browser? We'll show you how to fix ERR_CONNECTION_REFUSED, with our simple guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/how-to-fix-err-connection-refused.webp\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/how-to-fix-err-connection-refused.webp\",\"width\":1024,\"height\":576,\"caption\":\"how to fix err_connection_refused error\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-fix-err_connection_refused\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix ERR_CONNECTION_REFUSED\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Fix ERR_CONNECTION_REFUSED | RoseHosting","description":"Are you seeing ERR_CONNECTION_REFUSED in your browser? We'll show you how to fix ERR_CONNECTION_REFUSED, with our simple guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix ERR_CONNECTION_REFUSED","og_description":"How to Fix ERR_CONNECTION_REFUSED | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2024-01-24T18:30:00+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp","type":"image\/webp"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Fix ERR_CONNECTION_REFUSED","datePublished":"2024-01-24T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/"},"wordCount":996,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp","keywords":["errors"],"articleSection":["Networking and Domains","Tutorials","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/","name":"How to Fix ERR_CONNECTION_REFUSED | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp","datePublished":"2024-01-24T18:30:00+00:00","description":"Are you seeing ERR_CONNECTION_REFUSED in your browser? We'll show you how to fix ERR_CONNECTION_REFUSED, with our simple guide.","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/12\/how-to-fix-err-connection-refused.webp","width":1024,"height":576,"caption":"how to fix err_connection_refused error"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix ERR_CONNECTION_REFUSED"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/28698","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=28698"}],"version-history":[{"count":9,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/28698\/revisions"}],"predecessor-version":[{"id":47731,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/28698\/revisions\/47731"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/47727"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=28698"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=28698"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=28698"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}