{"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>\n
\"how<\/figure>\n\n\n\n

<\/p>\n\n\n\n

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\n\n\n\n

How to Fix ERR_CONNECTION_REFUSED On your Own Web Server or VPS<\/h2>\n\n\n\n

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

Using firewall-cmd<\/code> we can easily check which ports are currently open by using this command:<\/p>\n\n\n\n

firewall-cmd --list-ports<\/pre>\n\n\n\n

This is what the output should be:<\/p>\n\n\n\n

80\/tcp\n443\/tcp<\/pre>\n\n\n\n

Port 80 needs to be open for regular HTTP connections, while port 443 is for secure HTTP connections (HTTPS). If it isn’t open, then you can use the following commands to add them:<\/p>\n\n\n\n

firewall-cmd --permanent --add-port=80\/tcp\nfirewall-cmd --permanent --add-port=443\/tcp<\/pre>\n\n\n\n

Once you do that, you can reload Firewalld<\/code> to apply the changes:<\/p>\n\n\n\n

firewall-cmd --reload\nsuccess<\/pre>\n\n\n\n

If you are using 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

iptables -L -n | grep 80\niptables -L -n | grep 443<\/pre>\n\n\n\n

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

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

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

iptables-save > \/etc\/iptables.backup<\/pre>\n\n\n\n

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

RHEL-based Distributions (Such as AlmaLinux):<\/p>\n\n\n\n

systemctl status httpd.service\nsystemctl status nginx.service<\/pre>\n\n\n\n

Debian-based Distributions (Such as Ubuntu):<\/p>\n\n\n\n

sudo systemctl status apache2.service\nsudo systemctl status nginx.service<\/pre>\n\n\n\n

If your server is stopped, start it by replacing the word ‘status’ with ‘start’ in the command corresponding with the webserver you are using.
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

Or, if you’re having trouble figuring it out, you can just sign up for our Managed VPS Hosting<\/a> services and we’ll troubleshoot the issue for you once your sites are migrated over. We’re sure we can fix the connection refused error for you.<\/p>\n\n\n\n

How to Fix ERR_CONNECTION_REFUSED On Your Computer<\/h2>\n\n\n\n

If you’re seeing this issue on just one website, then it’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’t notice that there’s an issue, so it may take some time for them to fix it.<\/p>\n\n\n\n

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

Wait a few minutes and try again<\/h3>\n\n\n\n

With this error, it’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

Clearing your caches<\/h3>\n\n\n\n

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

    \n
  1. Click on the More menu in the top right (it’s an icon with three vertical dots).<\/li>\n\n\n\n
  2. Click More tools > Clear browsing data.<\/li>\n\n\n\n
  3. At the top, make sure to set the time range to All time.<\/li>\n\n\n\n
  4. Only check the checkbox labelled “Cached images and files”.<\/li>\n\n\n\n
  5. Click Clear data.<\/li>\n<\/ol>\n\n\n\n

    Once done, try and access the webpage again.<\/p>\n\n\n\n

    If this doesn’t help, then you can try deleting your cookies and website data. <\/p>\n\n\n\n

    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’t delete your saved passwords, making it not too big of an issue.<\/div>\n\n\n\n

    Remove any Proxies<\/h3>\n\n\n\n

    A proxy can also cause the ERR_CONNECTION_REFUSED error. If you enter “chrome:\/\/settings\/” into your address bar in Chrome then search for 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

    Disabling your firewall<\/h3>\n\n\n\n

    It’s possible that your firewall is refusing your connection to their server. It’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

    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

    That’s all we have for you – this should almost certainly fix your ERR_CONNECTION_REFUSED error. If you like this post on 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":"

    In this tutorial, we will show you how to fix the ERR_CONNECTION_REFUSED error that can happen both when accessing other … <\/p>\n

    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],"yoast_head":"\nHow to Fix ERR_CONNECTION_REFUSED - RoseHosting<\/title>\n<meta name=\"description\" content=\"Are you seeing ERR_CONNECTION_REFUSED in your browser? We'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 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Are you seeing ERR_CONNECTION_REFUSED in your browser? We'll show you how to fix ERR_CONNECTION_REFUSED, with our simple guide.\" \/>\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=\"article:modified_time\" content=\"2023-12-28T10:59:28+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\",\"dateModified\":\"2023-12-28T10:59:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/\"},\"wordCount\":981,\"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\",\"dateModified\":\"2023-12-28T10:59:28+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\",\"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\":\"required name=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\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?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 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 - RoseHosting","og_description":"Are you seeing ERR_CONNECTION_REFUSED in your browser? We'll show you how to fix ERR_CONNECTION_REFUSED, with our simple guide.","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","article_modified_time":"2023-12-28T10:59:28+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","dateModified":"2023-12-28T10:59:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-fix-err_connection_refused\/"},"wordCount":981,"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","dateModified":"2023-12-28T10:59:28+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","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":"required name=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\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?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"}],"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}]}}