{"id":3589,"date":"2025-09-29T12:58:42","date_gmt":"2025-09-29T12:58:42","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=3589"},"modified":"2025-12-12T07:10:10","modified_gmt":"2025-12-12T07:10:10","slug":"manually-install-n8n-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.html","title":{"rendered":"How to Manually Install n8n on Ubuntu?"},"content":{"rendered":"\n<p>In today\u2019s time, Automation is no longer a luxury; it\u2019s a necessity!<\/p>\n\n\n\n<p>If you are looking for a powerful yet flexible automation tool, n8n (pronounced n-eight-n) is one of the best open-source solutions out there. It helps you connect different apps, automate repetitive tasks, and streamline workflows without requiring extensive code.<\/p>\n\n\n\n<p>In this guide, we will walk you through the step-by-step process of manually installing n8n on Ubuntu. Whether you are a beginner or an experienced sysadmin, this tutorial is designed to be clear, simple, and practical.\u00a0<\/p>\n\n\n\n<p>By the end of this tutorial, you will have a fully functional n8n instance running on your Ubuntu server, accessible from anywhere, at any time.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p><strong>Before diving into the installation, make sure you have:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: ' \\2794';\">\n<li>&nbsp;An Ubuntu 20.04\/22.04\/24.04 server (VPS or dedicated server).<\/li>\n\n\n\n<li>&nbsp;A non-root user with sudo privileges.<\/li>\n\n\n\n<li>&nbsp;Basic Linux command-line knowledge.<\/li>\n<\/ul>\n\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\/maintenance.png\" alt=\"Lack-of-Customer-Support\" \/>\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                        Automate Faster Now                    <\/div>\n                    <p>\n                        Try our ready-to-go n8n self-hosting and start automating in minutes!\n                    <\/p>\n                    <div class=\"blg-advrt-first-btn affl-blg-btn\">\n                        <a href=\"https:\/\/www.hostitsmart.com\/servers\/self-hosted-n8n\">\n                            Get n8n Self-Hosting                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    \n\n\n<h2 class=\"wp-block-heading\"><strong>Steps to Manually Install n8n on Ubuntu<\/strong><\/h2>\n\n\n\n<p><strong>\u2794<\/strong> <strong>Step 1: Update Your Ubuntu Server<\/strong><\/p>\n\n\n\n<p>It\u2019s always a good idea to start by updating your system packages.\u00a0<\/p>\n \n\n\n<p>You have to run:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo apt update &amp;&amp; sudo apt upgrade -y<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Before we start installing, let\u2019s add some essential dependencies that help Ubuntu handle HTTPS repositories and software installations smoothly:<\/p>\n\n\n\n<p><strong>\u2794<\/strong> <strong>Step 2: Install Required Dependencies<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo apt install -y apt-transport-https ca-certificates curl software-properties-common<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2605 apt-transport-https \u2192 It enables package downloads over HTTPS.<\/p>\n\n\n\n<p>\u2605 ca-certificates \u2192 It ensures SSL certificates are trusted.<\/p>\n\n\n\n<p>\u2605 curl \u2192 It allows for fetching external scripts (like Node.js setup).<\/p>\n\n\n\n<p>\u2605 software-properties-common \u2192 It makes it easier to manage repositories.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Option A \u2013 Containerized Installation Using Docker<\/strong><\/h3>\n\n\n\n<p>If you are planning to use n8n for production workflows or want a setup that is stable, portable, and easy to manage, the containerized installation using Docker is the recommended method.<\/p>\n\n\n\n<p><strong>Here\u2019s how you can set it up:<\/strong><\/p>\n\n\n\n<p>\u2794 First, we need Docker installed on your Ubuntu server:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>curl -fsSL https:\/\/download.docker.com\/linux\/ubuntu\/gpg | sudo gpg &#8211;dearmor -o \/usr\/share\/keyrings\/docker-archive-keyring.gpg<\/strong><br><br><strong>echo &#8220;deb [arch=amd64 signed-by=\/usr\/share\/keyrings\/docker-archive-keyring.gpg] https:\/\/download.docker.com\/linux\/ubuntu $(lsb_release -cs) stable&#8221; | sudo tee \/etc\/apt\/sources.list.d\/docker.list > \/dev\/null<\/strong><br><br><strong>sudo apt update<\/strong><br><br><strong>sudo apt install -y docker-ce docker-ce-cli containerd.io<\/strong><br><br><strong>docker &#8211;version<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This installs the Docker engine, the CLI tools, and the container runtime, and ensures Docker is ready to run containers.<\/p>\n\n\n\n<p>\u2794 To make sure your n8n workflows and data are saved even if the container is stopped or removed, create a dedicated folder for persistent storage:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo mkdir -p \/root\/n8n_data<\/strong><br><strong>sudo chown -R 1000:1000 \/root\/n8n_data<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Here, we assign ownership to the user ID <strong>1000<\/strong>, which corresponds to the default user inside the n8n container.<\/p>\n\n\n\n<p>\u2794 Now, you have to run n8n inside a Docker container with all necessary environment variables for basic authentication:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker run -d &#8211;name n8n \\<\/strong><br><strong>\u00a0\u00a0-p 5678:5678 \\<\/strong><br><strong>\u00a0\u00a0-v \/root\/n8n_data:\/home\/node\/.n8n \\<\/strong><br><strong>\u00a0\u00a0-e N8N_BASIC_AUTH_ACTIVE=true \\<\/strong><br><strong>\u00a0\u00a0-e N8N_BASIC_AUTH_USER=admin \\<\/strong><br><strong>\u00a0\u00a0-e N8N_BASIC_AUTH_PASSWORD=strongpassword \\<\/strong><br><strong>\u00a0\u00a0-e N8N_SECURE_COOKIE=false \\<\/strong><br><strong>\u00a0\u00a0&#8211;restart always \\<\/strong><br><strong>\u00a0\u00a0n8nio\/n8n:latest<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2605 -d \u2192 runs the container in detached mode (in the background).<\/p>\n\n\n\n<p>\u2605 &#8211;name n8n \u2192 names the container \u201cn8n\u201d.<\/p>\n\n\n\n<p>\u2605 -p 5678:5678 \u2192 exposes port 5678 on your server so you can access the n8n interface.<\/p>\n\n\n\n<p>\u2605 -v \/root\/n8n_data:\/home\/node\/.n8n \u2192 maps your host storage to the container for persistent data.<\/p>\n\n\n\n<p>\u2605 -e N8N_BASIC_AUTH_* \u2192 enables basic authentication for security.<\/p>\n\n\n\n<p>\u2605 &#8211;restart always \u2192 ensures the container restarts automatically on server reboot.<\/p>\n\n\n\n<p>\u2794 Now, you have to check that your n8n container is running properly by using:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker ps<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You should see your n8n container listed with the status Up. Now open your browser and go to:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>http:\/\/&lt;server-ip>:5678<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You have to replace &lt;server-ip> with your actual server IP address. Log in using the credentials you provided in the environment variables.<\/p>\n\n\n\n<p>This method is highly recommended for production usage because it keeps your n8n instance isolated, persistent, and easy to manage. Updating or migrating your automation workflows becomes much simpler, and you don\u2019t need to worry about breaking other software on your server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Option B \u2013 Direct Installation Using Node.js<\/strong><\/h3>\n\n\n\n<p>This option is best if you want to quickly get n8n up and running without extra configuration.<\/p>\n\n\n\n<p><strong>Steps for Direct Installation:<\/strong><\/p>\n\n\n\n<p>\u2794 Install Node.js version 18 (LTS), which is the recommended version for n8n.<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>curl -fsSL https:\/\/deb.nodesource.com\/setup_18.x | sudo -E bash &#8211;<\/strong><br><strong>sudo apt install -y nodejs<\/strong><br><strong>node -v<\/strong><br><strong>npm -v<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 Once Node.js is installed, install n8n globally with npm:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo npm install -g n8n<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2794 Start n8n manually by running:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>n8n<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will start the n8n service in your terminal session.<\/p>\n\n\n\n<p>\u2794 Open your browser and enter:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>http:\/\/&lt;server-ip>:5678<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You have to replace &lt;server-ip> with your actual server IP address. You should now see the n8n editor interface, where you can begin building workflows.<\/p>\n\n\n\n<p>With this, you have successfully installed and launched n8n using the quickest method. It\u2019s a great way to get familiar with the tool and start experimenting right away.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Manually installing n8n on Ubuntu provides the flexibility to choose a setup that suits your needs, whether it\u2019s for quick testing or a full production environment.<\/p>\n\n\n\n<p>If you are just getting started or want to explore n8n\u2019s powerful workflow automation capabilities, the direct Node.js installation allows you to launch n8n quickly and begin experimenting within minutes.<\/p>\n\n\n\n<p>On the other hand, if you\u2019re building workflows that need to run reliably for your business, the containerized Docker installation provides a stable, portable, and secure environment with persistent data storage and automatic restarts.<\/p>\n\n\n\n<p>By following this guide, you now have a clear understanding of both installation methods, the prerequisites, and the steps required to get n8n up and running on your Ubuntu server. You can now confidently start building, automating, and scaling your workflows.<\/p>\n\n\n<script>\nfunction copyCommand(btn) {\n  const td = btn.parentElement.querySelector(\"td.kb_firewall\");\n  const text = td.innerText.trim();\n\n  navigator.clipboard.writeText(text).then(() => {\n    const msg = btn.parentElement.querySelector(\".copy-msg\");\n    msg.style.display = \"inline-block\";\n    setTimeout(() => msg.style.display = \"none\", 1000);\n  });\n}\n<\/script>","protected":false},"excerpt":{"rendered":"<p>In today\u2019s time, Automation is no longer a luxury; it\u2019s a necessity! If you are looking for a powerful yet flexible automation tool, n8n (pronounced n-eight-n) is one of the best open-source solutions out there. It helps you connect different apps, automate repetitive tasks, and streamline workflows without requiring extensive code. In this guide, we [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[64],"tags":[],"class_list":["post-3589","post","type-post","status-publish","format-standard","hentry","category-n8n"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Manually Install n8n on Ubuntu?<\/title>\n<meta name=\"description\" content=\"Learn how to manually install n8n on Ubuntu step by step. Set up n8n, configure dependencies, and start automating workflows on your server with ease.\" \/>\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\/469\/manually-install-n8n-on-ubuntu.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Manually Install n8n on Ubuntu?\" \/>\n<meta property=\"og:description\" content=\"Learn how to manually install n8n on Ubuntu step by step. Set up n8n, configure dependencies, and start automating workflows on your server with ease.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-29T12:58:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-12T07:10:10+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\/469\/manually-install-n8n-on-ubuntu.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.html\",\"name\":\"How to Manually Install n8n on Ubuntu?\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-09-29T12:58:42+00:00\",\"dateModified\":\"2025-12-12T07:10:10+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Learn how to manually install n8n on Ubuntu step by step. Set up n8n, configure dependencies, and start automating workflows on your server with ease.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.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 Manually Install n8n on Ubuntu?","description":"Learn how to manually install n8n on Ubuntu step by step. Set up n8n, configure dependencies, and start automating workflows on your server with ease.","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\/469\/manually-install-n8n-on-ubuntu.html","og_locale":"en_US","og_type":"article","og_title":"How to Manually Install n8n on Ubuntu?","og_description":"Learn how to manually install n8n on Ubuntu step by step. Set up n8n, configure dependencies, and start automating workflows on your server with ease.","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-09-29T12:58:42+00:00","article_modified_time":"2025-12-12T07:10:10+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\/469\/manually-install-n8n-on-ubuntu.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.html","name":"How to Manually Install n8n on Ubuntu?","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-09-29T12:58:42+00:00","dateModified":"2025-12-12T07:10:10+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Learn how to manually install n8n on Ubuntu step by step. Set up n8n, configure dependencies, and start automating workflows on your server with ease.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.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\/3589","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=3589"}],"version-history":[{"count":16,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/3589\/revisions"}],"predecessor-version":[{"id":3845,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/3589\/revisions\/3845"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=3589"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=3589"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=3589"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}