{"id":4000,"date":"2021-11-29T18:42:33","date_gmt":"2021-11-29T13:12:33","guid":{"rendered":"https:\/\/www.helptoinstall.com\/?p=4000"},"modified":"2026-01-29T18:31:45","modified_gmt":"2026-01-29T13:01:45","slug":"how-to-install-pimcore-cms-on-ubuntu-18-04-lts","status":"publish","type":"post","link":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/","title":{"rendered":"How to Install Pimcore CMS on Ubuntu 18.04 LTS ?"},"content":{"rendered":"\n<p>Pimcore is a free and open-source enterprise content management system that runs on MySQL\/MariaDB databases and is built in PHP. It&#8217;s quick, adaptable, and user-friendly for designers and developers, allowing us to store and distribute all of our digital assets across all channels. For managing data and system setup, Pimcore features an intuitive administrative backend interface. Pimcore is fully customizable and editable, allowing you to tailor the site to your specific requirements.<\/p>\n\n\n\n<p>You will learn how to install Pimcore CMS on Ubuntu 18.04 in this article&nbsp;(Bionic Beaver).<\/p>\n\n\n\n<p>LEMP Server should be installed.<br>Pimcore CMS is a web-based content management system written in PHP which uses MariaDB as its database. As a result, you&#8217;ll need to set up Nginx, PHP, and MariaDB on your PC.<\/p>\n\n\n\n<p>To begin, run the following command to install Nginx and MariaDB:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>sudo apt-get install nginx mariadb-server -y<\/strong>\n\nOnce the installation is complete, use the following command to start the Nginx and MariaDB services and enable them to start at boot time:\n<strong>\nsudo systemctl start nginx\nsudo systemctl enable nginx\nsudo systemctl start mysql\nsudo systemctl enable mysql\n<\/strong>\nAfter that, you must install the most recent versions of PHP and PHP-FPM on your system. \nIn Ubuntu 18.04, the most recent version of PHP is not installed by default. \nAs a result, you'll need to add a repository. Using the following command, you may add the PHP repository:\n\n<strong>sudo apt-get install software-properties-common -y\nsudo add-apt-repository ppa:ondrej\/php<\/strong>\n\nOnce the repository is installed, update the repository and install PHP, PHP-FPM and other required libraries using the following command:\n<strong>\nsudo apt-get install php7.1-0 php7.1-fpm php7.1-common php7.1-<\/strong>m<strong>bstring php7.1-cli php7.1-zip php7.1-xmlrpc php7.1-soap php7.1-gd php7.1-xml php7.1-intl php7.1-mysql -y<\/strong>\n\n\nOnce you've installed all of the packages, you'll need to make some adjustments to the php.ini file. You can use the following command to accomplish this:\n<strong>\nsudo nano \/etc\/php\/7.1\/fpm\/php.ini<\/strong>\n\nMake the following modifications:\n\n<strong>file_uploads = On\nallow_url_fopen = On\nmemory_limit = 256M\nupload_max_filesize = 200M<\/strong>\n<strong>max_execution_time = 300\ncgi.fix_pathinfo = 0\ndate.timezone = Asia\/Kolkata<\/strong>\n\nWhen you're finished, save and close the file.\n\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-configure-mariadb\">Configure MariaDB<\/h2>\n\n\n\n<p>The next step is to secure MariaDB. Run the following command to accomplish this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>sudo mysql_secure_installation<\/strong>\n\nAnswer the following questions in the following order:\n<strong>\n\nEnter current password for root (enter for none):\nSet root password? [Y\/n]: N\nRemove anonymous users? [Y\/n]: Y<\/strong>\nD<strong>isallow root login remotely? [Y\/n]: Y\nRemove test database and access to it? [Y\/n]:  Y\nReload privilege tables now? [Y\/n]:  Y<\/strong><\/pre>\n\n\n\n<p>Log in to MariaDB shell using the following command once MariaDB has been secured:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>mysql -u root -p<\/strong>\n\nCreate a database and user for Pimcore after providing your root password:\n\n<strong>&lt;!-- wp:preformatted --&gt;\n&lt;pre class=\"wp-block-preformatted\"&gt;&lt;strong&gt;mysql -u root -p&lt;\/strong&gt;\n\n&lt;\/pre&gt;\n&lt;!-- \/wp:preformatted --&gt;<\/strong>\n\n<strong>MariaDB [(none)]&gt; CREATE DATABASE pimcoredb;\nMariaDB [(none)]&gt; CREATE USER 'pimcoreuser'@'localhost' IDENTIFIED BY 'password';<\/strong>\n\nThen, with the following command, grant all privileges to the Pimcore database:\n\n<strong>MariaDB [(none)]&gt; GRANT ALL ON pimcoredb.* TO 'pimcoreuser'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;<\/strong>\n\nThen, using the following command, flush the privileges:\n\n<strong>MariaDB [(none)]&gt; FLUSH PRIVILEGES;<\/strong>\n\nFinally, use the following command to quit the MariaDB shell:\n<strong>\nMariaDB [(none)]&gt; EXIT<\/strong>\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-pimcore\">Install Pimcore<\/h2>\n\n\n\n<p>After that, you must download the most recent version of Pimcore on your computer. You can get it from their official website by using the command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>wget https:\/\/www.pimcore.org\/download\/pimcore-latest.zip<\/strong>\n\nWhen the download is finished, use the following command to unzip the downloaded file in the Nginx web root directory:\n\n<strong>sudo mkdir \/var\/www\/html\/pimcore\nsudo unzip pimcore-latest.zip -d \/var\/www\/html\/pimcore<\/strong>\n\nNext, use the following command to assign correct rights to the pimcore directory:\n\n<strong>sudo chown -R www-data:www-data \/var\/www\/html\/pimcore\/\nsudo chmod -R 755 \/var\/www\/html\/pimcore\/<\/strong>\n\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-configure-nginx-for-pimcore\">Configure Nginx for Pimcore<\/h2>\n\n\n\n<p>The next step is to build a Pimcore CMS virtual host file in Nginx. Use the following command to achieve this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>sudo nano \/etc\/nginx\/sites-available\/pimcore<\/strong>\n\n<strong>server {<\/strong>\n<strong>    listen 80;\n    listen [::]:80;\n    root \/var\/www\/html\/pimcore;\n    index  index.php index.html index.htm;\n    server_name  example.com www.example.com;\n<\/strong>  \n<strong>    client_max_body_size 100M;\n\n    location \/ {\n    try_files $uri \/app.php$is_args$args;       <\/strong> \n    }\n<strong>\n    location ~ ^\/app\\.php(\/|$) {\n         include snippets\/fastcgi-php.conf;\n         fastcgi_pass unix:\/var\/run\/php\/php7.1-fpm.sock;\n         fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n         send_timeout 1800;\n         fastcgi_read_timeout 1800;\n         include fastcgi_params;<\/strong>\n    }\n}<\/pre>\n\n\n\n<p>When you&#8217;re finished, save and close the file.<\/p>\n\n\n\n<p>Next, use the following command to enable the Nginx virtual host file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>sudo ln -s \/etc\/nginx\/sites-available\/pimcore \/etc\/nginx\/sites-enabled\/<\/strong><br><br>Finally, use the following command to restart Nginx and PHP7.1-FPM:<br><br><strong>sudo systemctl restart nginx<\/strong><br><strong>sudo \/etc\/init.d\/php7.1-fpm restart<\/strong><br><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-access-pimcore-cms\">Access Pimcore CMS<\/h2>\n\n\n\n<p>So now Pimcore has been installed and configured, you may visit the Pimcore web interface.<\/p>\n\n\n\n<p>Do you ever find yourself in the heat of the battle? Do you have any reservations about completing the installation\u00a0without any hassle? I have some great news to share with you. <a href=\"https:\/\/www.hostnats.com\/\">Hostnats<\/a> offers a low-cost Pimcore Installation\u00a0service that is tailored to your excellence.\u00a0<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Pimcore is a free and open-source enterprise content management system that runs on MySQL\/MariaDB databases and is built in PHP. It&#8217;s quick, adaptable, and user-friendly for designers and developers, allowing us to store and distribute all of our digital assets across all channels. For managing data and system setup, Pimcore features an intuitive administrative backend [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49,82],"tags":[219,220,221,222],"class_list":["post-4000","post","type-post","status-publish","format-standard","hentry","category-blog","category-content-management-system-cms","tag-how-to-install-pimcore","tag-how-to-install-pimcore-cms","tag-how-to-install-pimcore-in-ubuntu-18-04lts","tag-how-to-install-pimcore-on-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.4 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Pimcore CMS on Ubuntu 18.04 LTS ? - Hostnats<\/title>\n<meta name=\"description\" content=\"Learn how to install Pimcore CMS on Ubuntu 18.04 LTS effortlessly. Follow our guide &amp; start building your digital platform today!\" \/>\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.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Pimcore CMS on Ubuntu 18.04 LTS ?\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Pimcore CMS on Ubuntu 18.04 LTS effortlessly. Follow our guide &amp; start building your digital platform today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/\" \/>\n<meta property=\"og:site_name\" content=\"Hostnats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hostnats\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-29T13:12:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-29T13:01:45+00:00\" \/>\n<meta name=\"author\" content=\"Gopu Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hostnats\" \/>\n<meta name=\"twitter:site\" content=\"@hostnats\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gopu Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/\"},\"author\":{\"name\":\"Gopu Kumar\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10\"},\"headline\":\"How to Install Pimcore CMS on Ubuntu 18.04 LTS ?\",\"datePublished\":\"2021-11-29T13:12:33+00:00\",\"dateModified\":\"2026-01-29T13:01:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/\"},\"wordCount\":314,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#organization\"},\"keywords\":[\"how to install pimcore\",\"how to install pimcore cms\",\"how to install pimcore in ubuntu 18.04lts\",\"how to install pimcore on ubuntu\"],\"articleSection\":[\"Blog\",\"Content Management System (CMS)\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/\",\"url\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/\",\"name\":\"How to Install Pimcore CMS on Ubuntu 18.04 LTS ? - Hostnats\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#website\"},\"datePublished\":\"2021-11-29T13:12:33+00:00\",\"dateModified\":\"2026-01-29T13:01:45+00:00\",\"description\":\"Learn how to install Pimcore CMS on Ubuntu 18.04 LTS effortlessly. Follow our guide & start building your digital platform today!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.hostnats.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Pimcore CMS on Ubuntu 18.04 LTS ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#website\",\"url\":\"https:\/\/www.hostnats.com\/blog\/\",\"name\":\"Hostnats\",\"description\":\"The Perfect Hosting Partner\",\"publisher\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostnats.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#organization\",\"name\":\"Hostnats Hosting\",\"url\":\"https:\/\/www.hostnats.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png\",\"width\":66,\"height\":67,\"caption\":\"Hostnats Hosting\"},\"image\":{\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/hostnats\",\"https:\/\/x.com\/hostnats\",\"https:\/\/www.instagram.com\/hostnats_hosting\/\",\"https:\/\/www.linkedin.com\/company\/hostnats\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10\",\"name\":\"Gopu Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g\",\"caption\":\"Gopu Kumar\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Pimcore CMS on Ubuntu 18.04 LTS ? - Hostnats","description":"Learn how to install Pimcore CMS on Ubuntu 18.04 LTS effortlessly. Follow our guide & start building your digital platform today!","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.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Pimcore CMS on Ubuntu 18.04 LTS ?","og_description":"Learn how to install Pimcore CMS on Ubuntu 18.04 LTS effortlessly. Follow our guide & start building your digital platform today!","og_url":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/","og_site_name":"Hostnats","article_publisher":"https:\/\/www.facebook.com\/hostnats","article_published_time":"2021-11-29T13:12:33+00:00","article_modified_time":"2026-01-29T13:01:45+00:00","author":"Gopu Kumar","twitter_card":"summary_large_image","twitter_creator":"@hostnats","twitter_site":"@hostnats","twitter_misc":{"Written by":"Gopu Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#article","isPartOf":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/"},"author":{"name":"Gopu Kumar","@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10"},"headline":"How to Install Pimcore CMS on Ubuntu 18.04 LTS ?","datePublished":"2021-11-29T13:12:33+00:00","dateModified":"2026-01-29T13:01:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/"},"wordCount":314,"commentCount":0,"publisher":{"@id":"https:\/\/www.hostnats.com\/blog\/#organization"},"keywords":["how to install pimcore","how to install pimcore cms","how to install pimcore in ubuntu 18.04lts","how to install pimcore on ubuntu"],"articleSection":["Blog","Content Management System (CMS)"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/","url":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/","name":"How to Install Pimcore CMS on Ubuntu 18.04 LTS ? - Hostnats","isPartOf":{"@id":"https:\/\/www.hostnats.com\/blog\/#website"},"datePublished":"2021-11-29T13:12:33+00:00","dateModified":"2026-01-29T13:01:45+00:00","description":"Learn how to install Pimcore CMS on Ubuntu 18.04 LTS effortlessly. Follow our guide & start building your digital platform today!","breadcrumb":{"@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.hostnats.com\/blog\/how-to-install-pimcore-cms-on-ubuntu-18-04-lts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hostnats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Pimcore CMS on Ubuntu 18.04 LTS ?"}]},{"@type":"WebSite","@id":"https:\/\/www.hostnats.com\/blog\/#website","url":"https:\/\/www.hostnats.com\/blog\/","name":"Hostnats","description":"The Perfect Hosting Partner","publisher":{"@id":"https:\/\/www.hostnats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostnats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hostnats.com\/blog\/#organization","name":"Hostnats Hosting","url":"https:\/\/www.hostnats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png","contentUrl":"https:\/\/www.hostnats.com\/blog\/wp-content\/uploads\/2020\/07\/logo.png","width":66,"height":67,"caption":"Hostnats Hosting"},"image":{"@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hostnats","https:\/\/x.com\/hostnats","https:\/\/www.instagram.com\/hostnats_hosting\/","https:\/\/www.linkedin.com\/company\/hostnats"]},{"@type":"Person","@id":"https:\/\/www.hostnats.com\/blog\/#\/schema\/person\/e913d744f9f4f9a2ed5f95c409f5cc10","name":"Gopu Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3a04e307992cf527a3f7224d55ec81767a1094f0278d86fb791aa46b3552bc8c?s=96&d=mm&r=g","caption":"Gopu Kumar"}}]}},"_links":{"self":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/4000","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/comments?post=4000"}],"version-history":[{"count":1,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/4000\/revisions"}],"predecessor-version":[{"id":6461,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/posts\/4000\/revisions\/6461"}],"wp:attachment":[{"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/media?parent=4000"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/categories?post=4000"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostnats.com\/blog\/wp-json\/wp\/v2\/tags?post=4000"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}