{"id":2568,"date":"2025-03-24T11:46:14","date_gmt":"2025-03-24T11:46:14","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=2568"},"modified":"2025-03-25T10:56:17","modified_gmt":"2025-03-25T10:56:17","slug":"restart-linux-server-by-command","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html","title":{"rendered":"How to Restart\/Reboot Linux Server by Command?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>If you manage a Linux server, knowing how to restart or reboot it properly is essential.<\/p>\n\n\n\n<p>But the question is whether rebooting a server is necessary.<\/p>\n\n\n\n<p>Whether you are looking to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Applying system updates<\/li>\n\n\n\n<li>Fixing system slowdowns<\/li>\n\n\n\n<li>Restarting stuck services<\/li>\n\n\n\n<li>Resolving memory leaks<\/li>\n\n\n\n<li>Reconfiguring system settings<\/li>\n<\/ul>\n\n\n\n<p>Rebooting the server can help restore normal operations!<\/p>\n\n\n\n<p>In this guide, we will discuss the correct methods to restart your Linux server using simple commands. Whether you are a beginner or an experienced administrator, these steps are easy to follow.<\/p>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/432\/create-new-group-in-linux.html\"><strong>How to Create a New Group in Linux?<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>What are Prerequisites &amp; Precautions?<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Access to the server: <\/strong>You must have SSH or direct terminal access.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Ensure Remote Access:<\/strong> If you are rebooting remotely, ensure the SSH connection is stable.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Root or sudo privileges:<\/strong> In most restart commands, you require administrative privileges.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Save any unsaved work:<\/strong> Before rebooting, save important files &amp; prevent any file losses.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Notify users: <\/strong>If you are running client\u2019s work on the servers, inform them before rebooting.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Check running processes:<\/strong> Ensure no critical operations are running by using <strong>ps aux<\/strong> or <strong>htop<\/strong>:<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Verify system logs: <\/strong>Check system logs for errors before rebooting using <strong>journalctl -xe<\/strong> or <strong>dmesg<\/strong>.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Backup Data:<\/strong> Always keep your important files and databases backed up.<\/li>\n<\/ul>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/430\/ls-command-in-linux.html\"><strong>Know About the ls Command in Linux With Examples<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Commands to Restart a Linux Server<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Method 1: Using the &#8216;reboot&#8217; Command (Recommended)<\/strong><\/h3>\n\n\n\n<p>The reboot command is the most straightforward and widely used method for restarting a Linux server. The best part is that it works on most Linux distributions. This command safely shuts down all running processes, unmounts file systems, and reboots the machine.<\/p>\n\n\n\n<p>To restart your server immediately, you can simply run:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo reboot<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\"><strong>Create Zip File With Command in Linux With Examples<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Method 2: Using the <span class=\"code_syntax\"> &#8216;shutdown&#8217; <\/span> Command<\/strong><\/h3>\n\n\n\n<p>The <strong><span class=\"code_syntax\">shutdown<\/span><\/strong> command provides more control over the restart process. The benefit of using this command is that it allows you to schedule reboots and notify users before the system restarts. This command can be useful to give users advance notice before restarting the system.<\/p>\n\n\n\n<p>\u2794 To restart the server immediately, you have to use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo shutdown -r now<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Here:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><span class=\"code_syntax\">-r<\/span><\/strong> flag is for rebooting.<\/li>\n\n\n\n<li><strong><span class=\"code_syntax\">now<\/span> <\/strong>means an immediate restart.<\/li>\n<\/ul>\n\n\n\n<p>This command will immediately restart the system after properly shutting down all running processes.<\/p>\n\n\n\n<p>\u2794 If you are looking to schedule a restart after a specific time (e.g., after 5 minutes), use the following:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo shutdown -r +5 &#8220;Server will reboot in 5 minutes&#8221;<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will reboot the server after 5 minutes, which allows users to save their work before the restart.<\/p>\n\n\n\n<p><hr><p>You can also set a specific time for rebooting. For example, to restart the server at 10:30 PM, you have to use:<\/p><hr><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo shutdown -r 22:30<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>To cancel a scheduled restart, you have to use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo shutdown -c<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>As a result, this command will stop any scheduled shutdown or reboot, preventing unexpected restarts.<\/p>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/427\/echo-command-in-linux.html\"><strong>A Guide to Echo Command in Linux With Examples<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Method 3: Using the init Command<\/strong><\/h3>\n\n\n\n<p>The <strong><span class=\"code_syntax\">init<\/strong> command is an older method of rebooting a Linux server by changing its runlevel. It provides a structured way to transition the system between different states. The runlevel determines the system&#8217;s state, such as shutdown, reboot, or normal operation.<\/p>\n\n\n\n<p>However, modern Linux distributions have moved away from the <strong><span class=\"code_syntax\">init<\/span><\/strong> system in favor of <strong><span class=\"code_syntax\">systemd<\/span><\/strong>. Therefore, using <strong><span class=\"code_syntax\">systemctl reboot<\/span><\/strong> is preferred for newer systems.<\/p>\n\n\n\n<p>To restart the server using the <strong><span class=\"code_syntax\">init<\/span><\/strong> command, you have to run:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo init 6<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Using this command changes the system\u2019s runlevel to 6, which is designated for rebooting.<\/p>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/425\/remove-directory-in-linux.html\"><strong>How To Remove Directory in Linux With Command?<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Method 4: Using the systemctl Command (For Systemd-based Linux)<\/strong><\/h3>\n\n\n\n<p>For modern Linux distributions that use <strong><span class=\"code_syntax\">systemd<\/span><\/strong>, the <strong><span class=\"code_syntax\">systemctl<\/span> <\/strong>command is the preferred method for restarting a server. It is recommended for modern Linux distributions like Ubuntu (16.04+), CentOS (7+), and Debian (8+).<\/p>\n\n\n\n<p>To restart the server, you have to run:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo systemctl reboot<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This command instructs the <strong><span class=\"code_syntax\">systemd<\/span><\/strong> to shut down all running services and reboot the system cleanly.<\/p>\n\n\n\n<p>More control over system services allows you to check and manage running processes before rebooting.<\/p>\n\n\n\n<p>To check active services before restarting, you have to use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo systemctl list-units &#8211;type=service &#8211;state=running<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This helps you confirm if any critical processes are running before issuing a reboot.<\/p>\n\n\n\n<p>If you want to force a reboot without waiting for processes to stop, use:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo systemctl reboot &#8211;force<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>*Note:<\/strong> This command should be used cautiously, as it may cause data loss if applications are still writing to disk.<\/p>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/417\/how-to-change-server-time-in-linux.html\"><strong>How to Change Server Time in Linux?<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Method 5: Restarting Using the halt Command<\/strong><\/h3>\n\n\n\n<p><hr><p>The <strong><span class=\"code_syntax\">halt<\/span><\/strong> command is primarily used to stop the system but can also be used to restart the server by adding the <strong><span class=\"code_syntax\">-r<\/span><\/strong> option.<\/p><hr><\/p>\n\n\n\n<p>This method can be useful when you need a quick restart and doesn\u2019t require additional options provided by <strong><span class=\"code_syntax\">shutdown<\/span><\/strong> or <strong><span class=\"code_syntax\">systemctl<\/span><\/strong>.<\/p>\n\n\n\n<p>To restart the server using the <strong><span class=\"code_syntax\">halt<\/span><\/strong> command, run:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo halt -r<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>*Note:<\/strong> Using halt without the <strong><span class=\"code_syntax\">-r<\/span><\/strong> flag will shut down the system instead of rebooting it.<\/p>\n\n\n\n<p><hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/401\/how-to-create-sudo-user-in-linux.html\"><strong>How to Create a User in Linux &amp; Add it to the sudoer File?<\/strong><\/a><\/p><hr><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Rebooting a Linux server is a simple yet crucial task that ensures system stability, applies updates, and resolves performance issues. While a graceful restart using commands like <strong><span class=\"code_syntax\">sudo reboot<\/span><\/strong> or <strong><span class=\"code_syntax\">sudo shutdown -r now <\/span><\/strong>is the best approach, knowing alternative methods can be a lifesaver when dealing with unresponsive servers.<\/p>\n\n\n\n<p>Before hitting that restart button, always check active services, notify users (if applicable), and schedule the reboot strategically to minimize downtime. If rebooting remotely, ensure a stable SSH connection to avoid unexpected disruptions.<\/p>\n\n\n\n<p>Remember, a well-managed reboot keeps your server running smoothly without unwanted surprises.<\/p>\n\n\n\n<p><strong>Reboot Smart, Not Hard!<\/strong><\/p>\n\n\n    <div class=\"blg-advrt-main blg-prm-bx\">\n        <div class=\"row\" style=\"display: flex; justify-content: space-evenly; align-items: center;\">\n            <div class=\"col-md-5\">\n                <div class=\"blg-advrt-first blg-advrt-right\">\n                    <img decoding=\"async\" src=\"https:\/\/www.hostitsmart.com\/assets\/images\/blog\/Hidden-Costs-and-Fees.png\" alt=\"Hidden-Costs-and-Fees\" \/>\n                <\/div>\n            <\/div>\n            <div class=\"col-md-7\">\n                <div class=\"blg-advrt-first blg-advrt-left\">\n                    <div class=\"blg_advrt_cnt\">\n                        Get a VPS Server That Don\u2019t Affect Your Pocket                    <\/div>\n                    <p>\n                        VPS hosting at an affordable price with Top-class features                    <\/p>\n                    <div class=\"blg-advrt-first-btn affl-blg-btn\">\n                        <a href=\"https:\/\/www.hostitsmart.com\/servers\/vps-hosting\">\n                            Get VPS Hosting                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    ","protected":false},"excerpt":{"rendered":"<p>Introduction If you manage a Linux server, knowing how to restart or reboot it properly is essential. But the question is whether rebooting a server is necessary. Whether you are looking to: Rebooting the server can help restore normal operations! In this guide, we will discuss the correct methods to restart your Linux server using [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-2568","post","type-post","status-publish","format-standard","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Restart\/Reboot Linux Server by Command?<\/title>\n<meta name=\"description\" content=\"Learn to restart or reboot a Linux server using command methods like reboot, shutdown, and systemctl, ensuring a safe server restart without data loss.\" \/>\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.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Restart\/Reboot Linux Server by Command?\" \/>\n<meta property=\"og:description\" content=\"Learn to restart or reboot a Linux server using command methods like reboot, shutdown, and systemctl, ensuring a safe server restart without data loss.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-24T11:46:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-25T10:56:17+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html\",\"name\":\"How to Restart\/Reboot Linux Server by Command?\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-03-24T11:46:14+00:00\",\"dateModified\":\"2025-03-25T10:56:17+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Learn to restart or reboot a Linux server using command methods like reboot, shutdown, and systemctl, ensuring a safe server restart without data loss.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Restart\/Reboot Linux Server by Command?","description":"Learn to restart or reboot a Linux server using command methods like reboot, shutdown, and systemctl, ensuring a safe server restart without data loss.","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.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html","og_locale":"en_US","og_type":"article","og_title":"How to Restart\/Reboot Linux Server by Command?","og_description":"Learn to restart or reboot a Linux server using command methods like reboot, shutdown, and systemctl, ensuring a safe server restart without data loss.","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-03-24T11:46:14+00:00","article_modified_time":"2025-03-25T10:56:17+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html","name":"How to Restart\/Reboot Linux Server by Command?","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-03-24T11:46:14+00:00","dateModified":"2025-03-25T10:56:17+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Learn to restart or reboot a Linux server using command methods like reboot, shutdown, and systemctl, ensuring a safe server restart without data loss.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/441\/restart-linux-server-by-command.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2568","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=2568"}],"version-history":[{"count":10,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2568\/revisions"}],"predecessor-version":[{"id":2622,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2568\/revisions\/2622"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=2568"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=2568"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=2568"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}