{"id":27102,"date":"2018-06-08T04:35:06","date_gmt":"2018-06-08T09:35:06","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27102"},"modified":"2022-06-03T03:34:56","modified_gmt":"2022-06-03T08:34:56","slug":"how-to-list-all-databases-in-mysql","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","title":{"rendered":"How To Show A List Of All DataBases In MySQL"},"content":{"rendered":"
<\/div>

\"how<\/p>\r\n

We will show you how to list all databases in MySQL, i.e how to have a list of all MySQL databases. MySQL is an open-source relational database management system commonly used with web-based applications like WordPress, Magento, etc. In this tutorial, we will show you how to list all databases in MySQL on a Linux VPS<\/a>.<\/p>\r\n

<\/p>\r\n

Before you start listing all tables in MySQL, make sure that you have full root access to your Linux server, or at least you have a system user with sudo privileges<\/a> that you can use to connect to your server. Once you connect to your server via SSH<\/a> run the following command to check whether you have a MySQL database server installed<\/a> on your VPS and what is the version:<\/p>\r\n

mysql -V<\/pre>\r\n

The output of the command should be similar to the one below:<\/p>\r\n

# mysql -V\r\nmysql  Ver 14.14 Distrib 5.7.22, for Linux (x86_64) using  EditLine wrapper<\/pre>\r\n

Next, to connect to the MySQL database server through the command line as user root<\/code> run the following command:<\/p>\r\n

mysql -u root -p<\/pre>\r\n

MySQL will ask you to enter the password for the MySQL root user. Enter the password and press Enter<\/code>. If you haven’t already set up a password for the MySQL root user, you can use the following command:<\/p>\r\n

mysql -u root<\/pre>\r\n

Of course, it is always recommended to keep your services secure, so if you haven’t set up the MySQL root password<\/a> yet, you can do that now using the mysql_secure_installation<\/code> command without arguments:<\/p>\r\n

mysql_secure_installation<\/pre>\r\n

Then, answer the security questions as follows:<\/p>\r\n

Would you like to setup VALIDATE PASSWORD plugin?\r\nPress y|Y for Yes, any other key for No: y\r\n\r\nPlease set the password for root here.\r\nNew password:\r\n\r\nDo you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y\r\n\r\nRemove anonymous users? (Press y|Y for Yes, any other key for No) : y\r\n\r\nDisallow root login remotely? (Press y|Y for Yes, any other key for No) : y\r\n\r\nRemove test database and access to it? (Press y|Y for Yes, any other key for No) : y\r\n\r\nReload privilege tables now? (Press y|Y for Yes, any other key for No) : y\r\n\r\nAll done!\r\n<\/pre>\r\n

Then, connect to the MySQL database server using the MySQL root user and enter your new root password.<\/p>\r\n

To list all databases in MySQL, run the following command:<\/h2>\r\n
mysql> show databases;<\/pre>\r\n

This command will work for you no matter if you have an Ubuntu VPS<\/a> or CentOS VPS<\/a>.<\/p>\r\n

The output of the command should be similar to the one below:<\/p>\r\n

mysql> show databases;\r\n+--------------------+\r\n| Database           |\r\n+--------------------+\r\n| information_schema |\r\n| mysql              |\r\n| performance_schema |\r\n| sys                |\r\n+--------------------+\r\n4 rows in set (0.00 sec)\r\n<\/pre>\r\n

If you have other databases created in MySQL, they will be all listed here.
Next, if you want to use a specific database and list all tables in it, you can use the following commands:<\/p>\r\n

mysql> use mysql;\r\n<\/pre>\r\n

To list the tables, you can use the command below:<\/p>\r\n

mysql> show tables<\/pre>\r\n

The tables will be listed in the following format:<\/p>\r\n

mysql> show tables;\r\n+---------------------------+\r\n| Tables_in_mysql           |\r\n+---------------------------+\r\n| columns_priv              |\r\n| db                        |\r\n| engine_cost               |\r\n| event                     |\r\n| func                      |\r\n| general_log               |\r\n| gtid_executed             |\r\n| help_category             |\r\n| help_keyword              |\r\n| help_relation             |\r\n| help_topic                |\r\n| host                      |\r\n| innodb_index_stats        |\r\n| innodb_table_stats        |\r\n| ndb_binlog_index          |\r\n| plugin                    |\r\n| proc                      |\r\n| procs_priv                |\r\n| proxies_priv              |\r\n| server_cost               |\r\n| servers                   |\r\n| slave_master_info         |\r\n| slave_relay_log_info      |\r\n| slave_worker_info         |\r\n| slow_log                  |\r\n| tables_priv               |\r\n| time_zone                 |\r\n| time_zone_leap_second     |\r\n| time_zone_name            |\r\n| time_zone_transition      |\r\n| time_zone_transition_type |\r\n| user                      |\r\n+---------------------------+\r\n32 rows in set (0.00 sec)\r\n<\/pre>\r\n

If you want to find out about the structure of a specific table you can use the DESCRIBE<\/code> statement in MySQL:<\/p>\r\n

mysql> DESCRIBE user;<\/pre>\r\n

The output will show you information about each of the columns in the table.<\/p>\r\n

If you want to go a little further and learn more about how to use the MySQL database service you can also check our tutorials on how to show all users in MySQL<\/a> or how to create a new user in MySQL and grant permissions to a MySQL database<\/a>. Advanced topics include how to configure remote and secure connections for MySQL<\/a> as well as how to optimize and repair MySQL databases with mysqlcheck<\/a>.<\/p>\r\n


\r\n

\"MySQLOf course, you don\u2019t have to list all tables in MySQL,\u00a0 if you are using one of our MySQL VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to help you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\r\n

PS. If you liked this post on how to list all databases in MySQL on a Linux VPS, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\r\n\r\n

 <\/p>\r\n","protected":false},"excerpt":{"rendered":"

We will show you how to list all databases in MySQL, i.e how to have a list of all MySQL … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":27105,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702],"tags":[1718,39],"yoast_head":"\nMySQL SHOW DATABASES: List All Databases in MySQL<\/title>\n<meta name=\"description\" content=\"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.\" \/>\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.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MySQL SHOW DATABASES: List All Databases in MySQL\" \/>\n<meta property=\"og:description\" content=\"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-08T09:35:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:34:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How To Show A List Of All DataBases In MySQL\",\"datePublished\":\"2018-06-08T09:35:06+00:00\",\"dateModified\":\"2022-06-03T08:34:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\"},\"wordCount\":551,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg\",\"keywords\":[\"list databases\",\"mysql\"],\"articleSection\":[\"Databases\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\",\"name\":\"MySQL SHOW DATABASES: List All Databases in MySQL\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg\",\"datePublished\":\"2018-06-08T09:35:06+00:00\",\"dateModified\":\"2022-06-03T08:34:56+00:00\",\"description\":\"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg\",\"width\":742,\"height\":371,\"caption\":\"how to list all databases in mysql\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Show A List Of All DataBases In MySQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MySQL SHOW DATABASES: List All Databases in MySQL","description":"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.","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.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","og_locale":"en_US","og_type":"article","og_title":"MySQL SHOW DATABASES: List All Databases in MySQL","og_description":"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-06-08T09:35:06+00:00","article_modified_time":"2022-06-03T08:34:56+00:00","og_image":[{"width":742,"height":371,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How To Show A List Of All DataBases In MySQL","datePublished":"2018-06-08T09:35:06+00:00","dateModified":"2022-06-03T08:34:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/"},"wordCount":551,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","keywords":["list databases","mysql"],"articleSection":["Databases"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/","name":"MySQL SHOW DATABASES: List All Databases in MySQL","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","datePublished":"2018-06-08T09:35:06+00:00","dateModified":"2022-06-03T08:34:56+00:00","description":"Learn how to show a list of all databases in MySQL using this easy, step-by-step tutorial. Use MySQL commands to list all databases.","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-List-All-Databases-in-MySQL.jpg","width":742,"height":371,"caption":"how to list all databases in mysql"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-list-all-databases-in-mysql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Show A List Of All DataBases In MySQL"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27102"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=27102"}],"version-history":[{"count":4,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27102\/revisions"}],"predecessor-version":[{"id":40966,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27102\/revisions\/40966"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/27105"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27102"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27102"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27102"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}