{"id":82225,"date":"2021-08-12T12:46:13","date_gmt":"2021-08-12T16:46:13","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=82225"},"modified":"2023-09-25T13:12:20","modified_gmt":"2023-09-25T17:12:20","slug":"install-mariadb-ubuntu-20","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/","title":{"rendered":"How To Install MariaDB on Ubuntu 20"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-1024x538.png\" alt=\"Install MariaDB on Ubuntu 20 Cloud Server\" class=\"wp-image-82226\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>The popular MariaDB relational database service is a great drop-in replace for MySQL, and all of the commands you\u2019re accustomed in MySQL should work perfectly in MariaDB. Or, if you are installing a relational database application for the first time, MariaDB is a great choice.  It does all the things MySQL does just as well \u2014 it is only licensed differently.  A relational database service is necessary for running popular content management systems like <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/\">WordPress<\/a>, <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/\">Joomla<\/a>, and <a href=\"https:\/\/www.inmotionhosting.com\/drupal-hosting\">Drupal hosting<\/a>.<\/p>\n\n\n\n<p>In this article, learn how to install MariaDB on your cloud server running Ubuntu 20. This is an ideal project for VPS as well as <a href=\"https:\/\/www.inmotionhosting.com\/managed-dedicated-servers\">managed dedicated hosting<\/a> and <a href=\"https:\/\/www.inmotionhosting.com\/bare-metal-servers\">unmanaged dedicated server hosting<\/a>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#install-mariadb\">How To Install MariaDB on Ubuntu 20<\/a><\/li>\n\n\n\n<li><a href=\"#install-mariadb-start-service\">Start the MariaDB Service<\/a><\/li>\n\n\n\n<li><a href=\"#install-mariadb-check-status\">How to Check MariaDB Service Status<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"alert alert-info\">For users on Ubuntu 16 or 18, this process should be the same. Please leave a comment if you experience any issues.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install-mariadb\">How To Install MariaDB on Ubuntu 20<\/h2>\n\n\n\n<p>The following commands must be run on a command prompt after you have successfully <a href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/cloud-server\/manage-ssh-keys\/\">added SSH keys to your server<\/a> and logged into your cloud server via SSH.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@&lt;domain or IP address&gt;<\/pre>\n\n\n\n<p>Be sure to replace the values \u201cdomain\u201d or \u201cIP address\u201d with your actual primary domain or IP address.<\/p>\n\n\n\n<p> All of the following commands will be run as the <code><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/root-access-faq\/\">root<\/a><\/code> user.  If you are using a user account with <code>sudo<\/code> privilege you will want to append \u201csudo\u201d as necessary. <\/p>\n\n\n\n<p> First, make sure your package manager is up to date by running this command: <\/p>\n\n\n\n<pre id=\"org04798cc\" class=\"wp-block-preformatted example\">apt update\n<\/pre>\n\n\n\n<p>\nInstall the MariaDB server:\n<\/p>\n\n\n\n<pre id=\"orgf4b323c\" class=\"wp-block-preformatted example\">apt install mariadb-server\n<\/pre>\n\n\n\n<p> Answer \u201cyes\u201d (<code>Y<\/code>) to the prompt to continue with the installation process. After completing this process you will be dropped back to your initial command prompt.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install-mariadb-start-service\">Start the MariaDB Service<\/h2>\n\n\n\n<p>\nTo use MariaDB you have to start the SQL server running as a process.\n<\/p>\n\n\n\n<p>\nStart the MariaDB service:\n<\/p>\n\n\n\n<pre id=\"org5891951\" class=\"wp-block-preformatted example\">service mysql start\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install-mariadb-check-status\">How to Check MariaDB Service Status<\/h2>\n\n\n\n<p> You can also check the status to make sure MaraDB is running from the default command prompt: <\/p>\n\n\n\n<pre id=\"orgae0c328\" class=\"wp-block-preformatted example\">systemctl status mariadb\n<\/pre>\n\n\n\n<p> You should see a message informing you that the MariaDB service is running, including this line with additional information:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Active: active (running)<\/pre>\n\n\n\n<p>If everything is running as expected, you have successfully installed MariaDB on Ubuntu 20. <\/p>\n\n\n\n<p>Recommended: Secure Your Installation<\/p>\n\n\n\n<p>It is highly recommended that before you proceed using MariaDB that you stop to secure the installation.  There is a convenient script you can run at any time which will help you take some necessary steps for security. Run this script at your standard command prompt:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql_secure_installation<\/pre>\n\n\n\n<p>You will be prompted to create a root user password, and several other questions. In general, it is safe to answer yes to all of these questions unless you are instructed otherwise.<\/p>\n\n\n<div class=\"jumbotron\">\r\n<p>If you don\u2019t need cPanel, don't pay for it. Only pay for what you need with our scalable <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud VPS Hosting<\/a>.<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>CentOS, Debian, or Ubuntu    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>No Bloatware    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>SSH and Root Access<\/p>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The popular MariaDB relational database service is a great drop-in replace for MySQL, and all of the commands you&#8217;re accustomed in MySQL should work perfectly in MariaDB. Or, if you are installing a relational database application for the first time, MariaDB is a great choice. It does all the things MySQL does just as well<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4308],"tags":[],"class_list":["post-82225","post","type-post","status-publish","format-standard","hentry","category-linux"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Install MariaDB on Ubuntu 20<\/title>\n<meta name=\"description\" content=\"In this article, learn how to install MariaDB on Ubuntu 20, for all of your remote relational database needs. Quick and easy installation of MariaDB.\" \/>\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.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install MariaDB on Ubuntu 20\" \/>\n<meta property=\"og:description\" content=\"In this article, learn how to install MariaDB on Ubuntu 20, for all of your remote relational database needs. Quick and easy installation of MariaDB.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-12T16:46:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-25T17:12:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How To Install MariaDB on Ubuntu 20\",\"datePublished\":\"2021-08-12T16:46:13+00:00\",\"dateModified\":\"2023-09-25T17:12:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\"},\"wordCount\":439,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-1024x538.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\",\"name\":\"How To Install MariaDB on Ubuntu 20\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-1024x538.png\",\"datePublished\":\"2021-08-12T16:46:13+00:00\",\"dateModified\":\"2023-09-25T17:12:20+00:00\",\"description\":\"In this article, learn how to install MariaDB on Ubuntu 20, for all of your remote relational database needs. Quick and easy installation of MariaDB.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install MariaDB on Ubuntu 20\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install MariaDB on Ubuntu 20","description":"In this article, learn how to install MariaDB on Ubuntu 20, for all of your remote relational database needs. Quick and easy installation of MariaDB.","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.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/","og_locale":"en_US","og_type":"article","og_title":"How To Install MariaDB on Ubuntu 20","og_description":"In this article, learn how to install MariaDB on Ubuntu 20, for all of your remote relational database needs. Quick and easy installation of MariaDB.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-08-12T16:46:13+00:00","article_modified_time":"2023-09-25T17:12:20+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20.png","type":"image\/png"}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How To Install MariaDB on Ubuntu 20","datePublished":"2021-08-12T16:46:13+00:00","dateModified":"2023-09-25T17:12:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/"},"wordCount":439,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-1024x538.png","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/","name":"How To Install MariaDB on Ubuntu 20","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20-1024x538.png","datePublished":"2021-08-12T16:46:13+00:00","dateModified":"2023-09-25T17:12:20+00:00","description":"In this article, learn how to install MariaDB on Ubuntu 20, for all of your remote relational database needs. Quick and easy installation of MariaDB.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/Install-MariaDB-Ubuntu-20.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mariadb-ubuntu-20\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Install MariaDB on Ubuntu 20"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4308,"name":"Linux","slug":"linux","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/82225","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=82225"}],"version-history":[{"count":12,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/82225\/revisions"}],"predecessor-version":[{"id":106895,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/82225\/revisions\/106895"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=82225"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=82225"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=82225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}