{"id":79667,"date":"2021-07-28T10:42:39","date_gmt":"2021-07-28T14:42:39","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=79667"},"modified":"2021-11-29T11:58:33","modified_gmt":"2021-11-29T16:58:33","slug":"install-mysql-debian-10","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/","title":{"rendered":"Install MySQL on Debian 10 Cloud Server"},"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\/07\/Install-MySQL-on-Debian-10-Cloud-Server-1024x538.png\" alt=\"Install MySQL on Debian 10 Cloud Server\" class=\"wp-image-79668\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p> MySQL is the leading database application for running thousands of apps across the web every day.  And more than remote services, MySQL can be used locally with all sorts of popular database management apps.  MySQL (or other open source variations) is widely supported and required to run many of the most popular web apps and content management systems, such as WordPress, Joomla, and Drupal.  Installing MySQL on Debian 10 requires a few extra steps that you may not always have to run through with other software, but after running through this article you\u2019ll have all the tools you need to get started. (If you are on a managed VPS, also known as <a href=\"https:\/\/www.inmotionhosting.com\/cpanel-hosting\/vps-with-cpanel\">VPS cPanel hosting<\/a>, then MySQL is already installed and you do not need to follow the steps listed here.)  <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#apt-repo\">Using The APT Repository<\/a>\n<ul>\n<li><a href=\"#download-package\">Download The Correct Package<\/a><\/li>\n<li><a href=\"#install-package\">Install The Package<\/a><\/li>\n<\/ul>\n<\/li><li><a href=\"#install-mysql\">Installing Your MySQL Server<\/a>\n<ul>\n<li><a href=\"#install-using-apt\">Install MySQL Using APT<\/a><\/li>\n<li><a href=\"#installation-process\">The Installation Process<\/a><\/li>\n<\/ul>\n<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"apt-repo\">Using The APT Repository<\/h2>\n\n\n\n<p>\nBy default, the MySQL packages you will need are not present in the APT repository.  However, you can install the MySQL APT repository by downloading the <code>.deb<\/code> package and following a few basic steps.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"download-package\">Download The Correct Package<\/h3>\n\n\n\n<p> First, log into your server as the root user, or a sudo user with appropriate privileges, and download the <code>.deb<\/code> package for the MySQL package archive.  For the download, this example will be using <code>wget<\/code>.  If you get an error, you might need to first install <code>wget<\/code>.  To check if <code>wget<\/code> is installed, you can run <code>which wget<\/code>.  If you get a result similar to <code>\/usr\/bin\/wget<\/code>, you\u2019re good to go. The version in bold may be different.  Check to see what the current version is.<\/p>\n\n\n\n<pre id=\"orga8c213f\" class=\"wp-block-preformatted example\">wget -c https:\/\/repo.mysql.com\/<strong>mysql-apt-config_0.8.18-1_all.deb<\/strong>\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-package\">Install The Package<\/h3>\n\n\n\n<p>\nYou can now install the release package using <code>dpkg<\/code>.  Remember, if you are not using the root user, you will just need to prepend <code>sudo<\/code> to the following command.\n<\/p>\n\n\n\n<pre id=\"org1dd1a45\" class=\"wp-block-preformatted example\">dpkg -i <strong>mysql-apt-config_0.8.18-1_all.deb<\/strong>\n<\/pre>\n\n\n\n<p>\nIf you get an error about missing packages, run a <code>apt update<\/code> and install any missing dependencies.\n<\/p>\n\n\n\n<p>\nIf everything went well, you will be prompted with a menu to select your MySQL version and other components.  If unsure, leave the default options and TAB down to <b>OK<\/b>.\n<\/p>\n\n\n\n<p>\nNow the MySQL repository should be installed on your system, and you can proceed with the MySQL installation process.\n<\/p>\n\n\n\n<p>\nBefore proceeding to the installation process, make sure to run an update command to refresh your package repositories:\n<\/p>\n\n\n\n<pre id=\"orgd7fce7a\" class=\"wp-block-preformatted example\">apt update\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install-mysql\">Installing Your MySQL Server<\/h2>\n\n\n\n<p> Now, this part should be more familiar to anyone who is accustomed to using the APT package manager and the standard update and install commands.  Now that you have installed the repository packages for MySQL, you can not only install the <code>mysql-server<\/code> application but also additionally MySQL-related components and packages that you might need.  Below, we will continue with the installation process by installing only the <code>mysql-server<\/code>. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-using-apt\">Install MySQL Using APT<\/h3>\n\n\n\n<p>\nTo proceed with the installation of the MySQL server package as well as other related components, just run the following command.  (Again, if you are logged in a sudo user, you will just need to prepend <code>sudo<\/code> to this command.\n<\/p>\n\n\n\n<pre id=\"org963aa50\" class=\"wp-block-preformatted example\">apt install mysql-server\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"installation-process\">The Installation Process<\/h3>\n\n\n\n<p>\nYou will be prompted with a few additional questions during the installation process.  First and foremost you will be prompted for a MySQL root password.  It is critically important to remember this root password.  Alternatively, if you leave the password blank, your system will use altnerative authentication methods.  Again, if using a root password (which is recommended) <b>be sure to remember your root password and keep it in a safe place<\/b>.\n<\/p>\n\n\n\n<p>\nEnter your root password and TAB down to <b>OK<\/b>.  Press <b>Enter<\/b> and the installation process will proceed.  When returned to your prompt, MySQL is installed.\n<\/p>\n\n\n\n<p>\nTo make sure that MySQL is running, you can use this command:\n<\/p>\n\n\n\n<pre id=\"orgb022cfe\" class=\"wp-block-preformatted example\">systemctl status mysql\n<\/pre>\n\n\n\n<p> Take note, that the MySQL service will be enabled in your system from now, and it will start automatically after reboot.  This means no further action is required on your part to make sure that MySQL is running properly in your system.  You are free to start using MySQL to build your server apps. <\/p>\n\n\n<div class=\"jumbotron\"><p>With our <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud Server Hosting<\/a>, you can deploy a lightning-fast, reliable cloud platform with built-in redundancy \u2013 ensuring the availability of your environment!<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>MySQL is the leading database application for running thousands of apps across the web every day. And more than remote services, MySQL can be used locally with all sorts of popular database management apps. MySQL (or other open source variations) is widely supported and required to run many of the most popular web apps and<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/\"> 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-79667","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>Install MySQL on Debian 10 Cloud Server<\/title>\n<meta name=\"description\" content=\"This article will show how to install MySQL on your Debian 10 cloud server, on the command line, with all the commands you&#039;ll need.\" \/>\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-mysql-debian-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install MySQL on Debian 10 Cloud Server\" \/>\n<meta property=\"og:description\" content=\"This article will show how to install MySQL on your Debian 10 cloud server, on the command line, with all the commands you&#039;ll need.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/\" \/>\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-07-28T14:42:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-29T16:58:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server.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=\"4 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-mysql-debian-10\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Install MySQL on Debian 10 Cloud Server\",\"datePublished\":\"2021-07-28T14:42:39+00:00\",\"dateModified\":\"2021-11-29T16:58:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/\"},\"wordCount\":671,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server-1024x538.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/\",\"name\":\"Install MySQL on Debian 10 Cloud Server\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server-1024x538.png\",\"datePublished\":\"2021-07-28T14:42:39+00:00\",\"dateModified\":\"2021-11-29T16:58:33+00:00\",\"description\":\"This article will show how to install MySQL on your Debian 10 cloud server, on the command line, with all the commands you'll need.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install MySQL on Debian 10 Cloud Server\"}]},{\"@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":"Install MySQL on Debian 10 Cloud Server","description":"This article will show how to install MySQL on your Debian 10 cloud server, on the command line, with all the commands you'll need.","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-mysql-debian-10\/","og_locale":"en_US","og_type":"article","og_title":"Install MySQL on Debian 10 Cloud Server","og_description":"This article will show how to install MySQL on your Debian 10 cloud server, on the command line, with all the commands you'll need.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-07-28T14:42:39+00:00","article_modified_time":"2021-11-29T16:58:33+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Install MySQL on Debian 10 Cloud Server","datePublished":"2021-07-28T14:42:39+00:00","dateModified":"2021-11-29T16:58:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/"},"wordCount":671,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server-1024x538.png","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/","name":"Install MySQL on Debian 10 Cloud Server","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server-1024x538.png","datePublished":"2021-07-28T14:42:39+00:00","dateModified":"2021-11-29T16:58:33+00:00","description":"This article will show how to install MySQL on your Debian 10 cloud server, on the command line, with all the commands you'll need.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Install-MySQL-on-Debian-10-Cloud-Server.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/install-mysql-debian-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Install MySQL on Debian 10 Cloud Server"}]},{"@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\/79667","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=79667"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/79667\/revisions"}],"predecessor-version":[{"id":92535,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/79667\/revisions\/92535"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=79667"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=79667"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=79667"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}