{"id":368,"date":"2018-01-24T02:17:14","date_gmt":"2018-01-24T08:17:14","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=368"},"modified":"2018-01-25T06:13:38","modified_gmt":"2018-01-25T12:13:38","slug":"mysql-database-size","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/","title":{"rendered":"How to Check MySQL Database Size"},"content":{"rendered":"<div id=\"linux-1879989649\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by some of the world&#8217;s most popular websites such as Facebook, Twitter, Youtube, Wikipedia ..etc. In this blog post, we will show you how to check the size of the MySQL databases and tables trough the MySQL shell. This post is written for MySQL but the exact same commands are also applicable for MariaDB.<\/p>\n<p><!--more--><\/p>\n<p><!-- more --><\/p>\n<h2>Check the size of all MySQL databases<\/h2>\n<p>To check the size of MySQL databases and tables we can use the virtual database called information_schema which provides access to database metadata, including the size of the databases and tables.<\/p>\n<p>Enter the MySQL shell as user root by executing the following command:<\/p>\n<pre><code>\r\nmysql -u root -p\r\n<\/code><\/pre>\n<p>To print the size of all your databases run the following command:<\/p>\n<pre><code>\r\nSELECT \r\n    table_schema \"Database Name\",\r\n    ROUND(SUM( data_length + index_length ) \/ 1024 \/ 1024, 2) AS \"Database Size in MB\"\r\nFROM \r\n    information_schema.TABLES\r\nGROUP BY table_schema ; \r\n<\/code><\/pre>\n<p>The output should be similar to the following:<\/p>\n<pre><code>\r\n+-----------------------+---------------------+\r\n| Database Name         | Database Size in MB |\r\n+-----------------------+---------------------+\r\n| admin_110             |              251.28 |\r\n| admin_120             |               18.99 |\r\n| admin_25              |               11.86 |\r\n| admin_562             |               28.45 |\r\n| admin_877             |                4.20 |\r\n| information_schema    |                0.14 |\r\n| mysql                 |                0.69 |\r\n| performance_schema    |                0.00 |\r\n| user_174              |               23.72 |\r\n| user_379              |                0.26 |\r\n| user_604              |                0.64 |\r\n| user_625              |                1.22 |\r\n| user_820              |                0.73 |\r\n| user_854              |                2.25 |\r\n| user_901              |                1.10 |\r\n| user_961              |                1.60 |\r\n+-----------------------+---------------------+\r\n<\/code><\/pre>\n<h2>Check the size of all Tables in a specific MySQL database<\/h2>\n<p>To print the size of all tables in a specific MySQL database, same as before we will use the information from the virtual database information_schema:<\/p>\n<pre><code>\r\nSELECT \r\n    table_name as \"Table Name\",\r\n    ROUND(((data_length + index_length) \/ 1024 \/ 1024), 2) AS \"Table Size in MB\"\r\nFROM \r\n    information_schema.TABLES \r\nwhere \r\n    table_schema = 'admin_562';\r\n<\/code><\/pre>\n<p>The output should be similar to the following:<\/p>\n<pre><code>\r\n+-----------------------+------------------+\r\n| Table Name            | Table Size in MB |\r\n+-----------------------+------------------+\r\n| wp_commentmeta        |             0.05 |\r\n| wp_comments           |            12.42 |\r\n| wp_links              |             0.03 |\r\n| wp_options            |             1.98 |\r\n| wp_postmeta           |             0.19 |\r\n| wp_posts              |             1.75 |\r\n| wp_term_relationships |             0.06 |\r\n| wp_term_taxonomy      |             0.05 |\r\n| wp_termmeta           |             0.05 |\r\n| wp_terms              |             0.05 |\r\n| wp_usermeta           |             0.05 |\r\n| wp_users              |             0.06 |\r\n| wp_wfBadLeechers      |             0.02 |\r\n| wp_wfBlockedIPLog     |             0.06 |\r\n| wp_wfBlocks           |             0.03 |\r\n| wp_wfBlocksAdv        |             0.02 |\r\n| wp_wfConfig           |             3.28 |\r\n| wp_wfCrawlers         |             0.02 |\r\n| wp_wfFileMods         |             1.52 |\r\n| wp_wfHits             |             2.20 |\r\n| wp_wfHoover           |             0.03 |\r\n| wp_wfIssues           |             2.52 |\r\n| wp_wfKnownFileList    |             0.20 |\r\n| wp_wfLeechers         |             0.05 |\r\n| wp_wfLockedOut        |             0.02 |\r\n| wp_wfLocs             |             0.02 |\r\n| wp_wfLogins           |             0.08 |\r\n| wp_wfNet404s          |             0.03 |\r\n| wp_wfNotifications    |             0.02 |\r\n| wp_wfPendingIssues    |             0.31 |\r\n| wp_wfReverseCache     |             0.02 |\r\n| wp_wfSNIPCache        |             0.06 |\r\n| wp_wfScanners         |             0.02 |\r\n| wp_wfStatus           |             1.17 |\r\n| wp_wfThrottleLog      |             0.03 |\r\n| wp_wfVulnScanners     |             0.02 |\r\n+-----------------------+------------------+\r\n<\/code><\/pre>\n<h2>Check the size of a specific Table in a specific MySQL database<\/h2>\n<p>In the last example we will show you how to check the of a specific table size by the database name and the table name, also by querying the virtual database information_schema :<\/p>\n<pre><code>\r\nSELECT \r\n    table_name as \"Table Name\",\r\n    ROUND(((data_length + index_length) \/ 1024 \/ 1024), 2) AS \"Table Size in MB\"\r\nFROM \r\n    information_schema.TABLES \r\nwhere \r\n   table_schema = 'admin_877' and table_name = 'wp_wfConfig';\r\n<\/code><\/pre>\n<p>The output should be similar to the following:<\/p>\n<pre><code>\r\n+-------------+------------------+\r\n| Table Name  | Table Size in MB |\r\n+-------------+------------------+\r\n| wp_wfConfig |             3.28 |\r\n+-------------+------------------+\r\n\r\n<\/code><\/pre>\n<hr \/>\n<p><img decoding=\"async\" class=\"size-full wp-image-372 alignleft\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/MySQL-Database-Size.png\" alt=\"MySQL Database Size\" width=\"150\" height=\"150\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/MySQL-Database-Size.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/MySQL-Database-Size-60x60.png 60w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/><\/p>\n<p>If you use one of our Outsourced <a href=\"https:\/\/linuxhostsupport.com\/outsourced-hosting-support.html\">Linux Server Support<\/a> Services, you can simply ask our expert Linux admins to check the size of your MySQL databases and tables for<\/p>\n<p>&nbsp;<\/p>\n<p>you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post, on how to check the size of MySQL databases and tables,\u00a0please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-468597043\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by some of the world&#8217;s most popular websites such as Facebook, Twitter, Youtube, Wikipedia ..etc. In this blog post, we will show you how to check the size of the MySQL databases and tables [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":370,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[78,79,77,76],"class_list":["post-368","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-database","tag-linux-host-support","tag-mysql","tag-size"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Check MySQL Database Size | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Check MySQL Database Size | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-24T08:17:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-25T12:13:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Check MySQL Database Size\",\"datePublished\":\"2018-01-24T08:17:14+00:00\",\"dateModified\":\"2018-01-25T12:13:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/\"},\"wordCount\":336,\"commentCount\":2,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg\",\"keywords\":[\"database\",\"Linux host support\",\"mysql\",\"size\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/\",\"name\":\"How to Check MySQL Database Size | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg\",\"datePublished\":\"2018-01-24T08:17:14+00:00\",\"dateModified\":\"2018-01-25T12:13:38+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Check MySQL Database Size\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Check MySQL Database Size\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Check MySQL Database Size | LinuxHostSupport","description":"MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by","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:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/","og_locale":"en_US","og_type":"article","og_title":"How to Check MySQL Database Size | LinuxHostSupport","og_description":"MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by","og_url":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-01-24T08:17:14+00:00","article_modified_time":"2018-01-25T12:13:38+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Check MySQL Database Size","datePublished":"2018-01-24T08:17:14+00:00","dateModified":"2018-01-25T12:13:38+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/"},"wordCount":336,"commentCount":2,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg","keywords":["database","Linux host support","mysql","size"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/","url":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/","name":"How to Check MySQL Database Size | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg","datePublished":"2018-01-24T08:17:14+00:00","dateModified":"2018-01-25T12:13:38+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"MySQL is the most popular open-source database in the world, powering small blogs, high-volume websites, business applications and more.\u00a0MySQL is used by","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Check-MySQL-Database-Size.jpg","width":750,"height":410,"caption":"How to Check MySQL Database Size"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/mysql-database-size\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Check MySQL Database Size"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/368","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=368"}],"version-history":[{"count":1,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/368\/revisions"}],"predecessor-version":[{"id":373,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/368\/revisions\/373"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/370"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=368"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=368"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=368"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}