{"id":28962,"date":"2018-10-26T06:52:16","date_gmt":"2018-10-26T11:52:16","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=28962"},"modified":"2022-12-14T06:52:04","modified_gmt":"2022-12-14T12:52:04","slug":"how-to-recover-from-an-accidental-ssh-disconnection-on-linux","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/","title":{"rendered":"How to Recover from an Accidental SSH Disconnection on Linux"},"content":{"rendered":"
<\/div>
\"How
How to Recover from an Accidental SSH Disconnection on Linux<\/figcaption><\/figure>\n

SSH remains the most common way by which we access our Linux servers. Most people don’t manually log into the server console itself. Through SSH, you can do almost everything except for certain low-level operations. However, this leaves us open to the possibility of disconnection. It might be unexpected but is a very real possibility. A sudden fluctuation on the Internet, a power surge, and your SSH session are immediately terminated.<\/span> Along with that, any processes that might have been running are typically terminated as well. Not just the ones active, but all the\u00a0<\/span>background processes as well<\/span><\/a>. If you were doing something important that shouldn’t be interrupted in the middle – like a complex installation, this can completely mess up your system.<\/span><\/p>\n

In this article, we’ll show you how to recover from an accidental disconnection on SSH.<\/span><\/p>\n

In a previous article, we’d shown you how to install and use the “screen” package for Linux<\/a><\/span>. While that was for demonstrating how to multi-task on Linux, you can also use the screen to preserve your SSH sessions. It’s a fantastic benefit and one that propels screen to the top of any “must-have” utilities to use on your Linux server.<\/span><\/p>\n

In the screenshot below, I’ve initiated a process to sleep for 30 minutes and pushed it into the background:<\/span><\/p>\n

\"New<\/p>\n

Now I just close my SSH session. I don’t exit gracefully or anything. I just press the “X” at the top of the Window. When I log in again, my process has vanished. It no longer exists and was killed as soon as I closed SSH:<\/span><\/p>\n

\"Previous<\/p>\n

Now let’s try the same thing with screen activated. In the screenshot below, I run the <\/span>same<\/span><\/i> command, but this time inside a “screen” as shown here:<\/span><\/p>\n

\"Run<\/p>\n

This is a new screen session, within screen “0”. Now when I close SSH and come back, I can get a list of all previous screens using the command:<\/span><\/p>\n

screen -ls<\/span><\/pre>\n

And this gives me the output as shown here:<\/span><\/p>\n

\"Previous<\/p>\n

As you can see, there is a screen session here with the name:<\/span><\/p>\n

pts-0.test-centos-server<\/span><\/p>\n

To reconnect to it, just type:<\/span><\/p>\n

screen -r<\/span><\/pre>\n

And this will take you back to where you were before the SSH connection was terminated! It’s an amazing tool that you <\/span>need<\/span><\/i> to use for all important operations as insurance against accidental terminations.<\/span><\/p>\n

Manually Detaching Screens<\/span><\/h2>\n

When you break an SSH session, what actually happens is that the screen is automatically <\/span>detached<\/span><\/i> from it and exists independently. While this is great, you can also detach screens <\/span>manually<\/span><\/i> and have multiple screens existing at the same time.<\/span><\/p>\n

For example, to detach a screen just type:<\/span><\/p>\n

screen -d<\/span><\/pre>\n

And the current screen will be detached and preserved. However, all the processes inside it are still running, and all the states are preserved:<\/span><\/p>\n

\"Manually<\/p>\n

You can re-attach to a screen at any time using the “screen -r” command. To connect to a specific screen instead of the most recent, use:<\/span><\/p>\n

screen -r <\/span>[screenname]<\/span><\/i><\/pre>\n

Changing the Screen Names to Make Them More Relevant<\/span><\/h2>\n

By default, the screen names don’t mean much. And when you have a bunch of them present, you won’t know which screens contain which processes. Fortunately, renaming a screen is easy when inside one. Just type:<\/span><\/p>\n

ctrl+a :<\/span><\/p>\n

We saw in the previous article that “ctrl+a” is the trigger condition for screen commands. The colon (:) will take you to the bottom of the screen where you can type commands. To rename, use:<\/span><\/p>\n

sessionname <\/span>[newscreenname]<\/span><\/i><\/pre>\n

As shown here:<\/span><\/p>\n

\"Change<\/p>\n

And now when you detach the screen, it will show with the new name like this:<\/span><\/p>\n

\"New<\/p>\n

Now you can have as many screens as you want without getting confused about which one is which!<\/span><\/p>\n


\n

If you are one of our Managed VPS hosting<\/a> clients, we can do all of this for you. Simply contact our system administrators and they will respond to your request as soon as possible.<\/p>\n

If you liked this blog post on how to recover from an accidental SSH disconnection on Linux, please share it with your friends on social media networks, or if you have any question regarding this blog post, simply leave a comment below and we will answer it. Thanks!<\/p>\n","protected":false},"excerpt":{"rendered":"

SSH remains the most common way by which we access our Linux servers. Most people don’t manually log into the … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":28970,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1703,13],"tags":[1765,68],"yoast_head":"\nHow to Recover from an Accidental SSH Disconnection on Linux - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting\" \/>\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-recover-from-an-accidental-ssh-disconnection-on-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/\" \/>\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=\"2018-10-26T11:52:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-14T12:52:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"4 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-recover-from-an-accidental-ssh-disconnection-on-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Recover from an Accidental SSH Disconnection on Linux\",\"datePublished\":\"2018-10-26T11:52:16+00:00\",\"dateModified\":\"2022-12-14T12:52:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/\"},\"wordCount\":710,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg\",\"keywords\":[\"discconect\",\"ssh\"],\"articleSection\":[\"Security\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/\",\"name\":\"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg\",\"datePublished\":\"2018-10-26T11:52:16+00:00\",\"dateModified\":\"2022-12-14T12:52:04+00:00\",\"description\":\"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg\",\"width\":742,\"height\":372,\"caption\":\"How to Recover from an Accidental SSH Disconnection on Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Recover from an Accidental SSH Disconnection on Linux\"}]},{\"@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 Recover from an Accidental SSH Disconnection on Linux - RoseHosting","description":"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting","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-recover-from-an-accidental-ssh-disconnection-on-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting","og_description":"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-10-26T11:52:16+00:00","article_modified_time":"2022-12-14T12:52:04+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Recover from an Accidental SSH Disconnection on Linux","datePublished":"2018-10-26T11:52:16+00:00","dateModified":"2022-12-14T12:52:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/"},"wordCount":710,"commentCount":3,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg","keywords":["discconect","ssh"],"articleSection":["Security","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/","name":"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg","datePublished":"2018-10-26T11:52:16+00:00","dateModified":"2022-12-14T12:52:04+00:00","description":"How to Recover from an Accidental SSH Disconnection on Linux - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Recover-from-an-Accidental-SSH-Disconnection-on-Linux.jpg","width":742,"height":372,"caption":"How to Recover from an Accidental SSH Disconnection on Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-recover-from-an-accidental-ssh-disconnection-on-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Recover from an Accidental SSH Disconnection on Linux"}]},{"@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\/28962"}],"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=28962"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/28962\/revisions"}],"predecessor-version":[{"id":44265,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/28962\/revisions\/44265"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/28970"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=28962"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=28962"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=28962"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}