{"id":38335,"date":"2020-12-29T02:15:00","date_gmt":"2020-12-29T09:15:00","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=38335"},"modified":"2021-02-10T18:13:20","modified_gmt":"2021-02-11T01:13:20","slug":"mysql-user-wildcard-and-localhost-hosts","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/","title":{"rendered":"MySQL User With wildcard and localhost Hosts"},"content":{"rendered":"\n<p>There&#8217;s often confusion over why MySQL users are created with a host of localhost in addition to a user created with wildcard, %, for their host.<\/p>\n\n\n\n<p>create user &#8216;some_user&#8217;@&#8217;localhost&#8217; identified by &#8216;some_password_here&#8217;;<\/p>\n\n\n\n<p>create user &#8216;some_user&#8217;@&#8217;%&#8217; identified by &#8216;some_password_here&#8217;;<\/p>\n\n\n\n<p>The wildcard as host implies that the user can connect from any client host (not a best practice for security!); however, it&#8217;s common, if not the norm, for the user to also be created specifying a host of &#8220;localhost.&#8221; This user must be made separately from the same username as the wildcard host. Why not use wildcard only?<\/p>\n\n\n\n<p>Again, using wildcard is a security risk, and it&#8217;s not a best practice to use; though, if it is requested or required for the environment, an additional localhost account is often created. The two users with the same user name may have different privileges granted for the two different accounts, lending more security. Given only those with access to the server can connect via localhost, the user@localhost account may be granted higher privileges than the one connecting remotely.<\/p>\n\n\n\n<p>Another reason for specifying localhost is because a localhost connection uses a Unix domain socket by default, whereas other connections use TCP\/IP. Unix domain socket connections can be faster than TCP\/IP connections, demonstrating lower latency and higher throughput in benchmark tests.<\/p>\n\n\n\n<p>Note that there are situations where users connecting through an account with % as host are denied access due to an anonymous user (security risk!) with a host of localhost. MySQL will authenticate the user@% as the anonymous user due to MySQL&#8217;s authentication method. MySQL will authenticate via the most-specific host values first, meaning a host set as localhost with no user is more specific than a defined user with wildcard as host. Users can be denied access due to being authenticated as an anonymous user and having the incorrect password for that user. While this is uncommon, it&#8217;s another reason why the localhost account may be created in addition to the wildcard account.<\/p>\n\n\n\n<p>One last thing to note is that it&#8217;s possible to explicitly specify and establish a specific transport protocol for a connection, such as TCP\/IP, Unix socket, shared memory, or pipe, by adding the option &#8211;protocol=&#8221;option_here&#8221; with login credentials. However, specifying socket, pipe, or memory protocol transport is only supported for connections to local MySQL servers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There&#8217;s often confusion over why MySQL users are created with a host of localhost in addition to a user created with wildcard, %, for their host. create user &#8216;some_user&#8217;@&#8217;localhost&#8217; identified by &#8216;some_password_here&#8217;; create user &#8216;some_user&#8217;@&#8217;%&#8217; identified by &#8216;some_password_here&#8217;; The wildcard as host implies that the user can connect from any client host (not a best [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":38338,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,39],"tags":[4070,4163,4162],"class_list":["post-38335","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-mysql","tag-database-security","tag-mysql-access","tag-mysql-host-authentication"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>MySQL User With wildcard and localhost Hosts<\/title>\n<meta name=\"description\" content=\"MySQL users table may include the same user with two accounts, one with wildcard and one with localhost. Wildcard typically means any host.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MySQL User With wildcard and localhost Hosts\" \/>\n<meta property=\"og:description\" content=\"MySQL users table may include the same user with two accounts, one with wildcard and one with localhost. Wildcard typically means any host.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-29T09:15:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-11T01:13:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XTIVIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XTIVIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"MySQL User With wildcard and localhost Hosts\",\"datePublished\":\"2020-12-29T09:15:00+00:00\",\"dateModified\":\"2021-02-11T01:13:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/\"},\"wordCount\":408,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg\",\"keywords\":[\"Database Security\",\"MySQL Access\",\"MySQL Host Authentication\"],\"articleSection\":[\"Blog\",\"MySQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/\",\"name\":\"MySQL User With wildcard and localhost Hosts\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg\",\"datePublished\":\"2020-12-29T09:15:00+00:00\",\"dateModified\":\"2021-02-11T01:13:20+00:00\",\"description\":\"MySQL users table may include the same user with two accounts, one with wildcard and one with localhost. Wildcard typically means any host.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg\",\"width\":557,\"height\":291,\"caption\":\"MySQL User with wildcard and localhost Hosts\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MySQL User With wildcard and localhost Hosts\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\",\"name\":\"XTIVIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"caption\":\"XTIVIA\"},\"url\":\"https:\/\/virtual-dba.com\/author\/xtivia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"MySQL User With wildcard and localhost Hosts","description":"MySQL users table may include the same user with two accounts, one with wildcard and one with localhost. Wildcard typically means any host.","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:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/","og_locale":"en_US","og_type":"article","og_title":"MySQL User With wildcard and localhost Hosts","og_description":"MySQL users table may include the same user with two accounts, one with wildcard and one with localhost. Wildcard typically means any host.","og_url":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2020-12-29T09:15:00+00:00","article_modified_time":"2021-02-11T01:13:20+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg","type":"image\/jpeg"}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"MySQL User With wildcard and localhost Hosts","datePublished":"2020-12-29T09:15:00+00:00","dateModified":"2021-02-11T01:13:20+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/"},"wordCount":408,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg","keywords":["Database Security","MySQL Access","MySQL Host Authentication"],"articleSection":["Blog","MySQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/","url":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/","name":"MySQL User With wildcard and localhost Hosts","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg","datePublished":"2020-12-29T09:15:00+00:00","dateModified":"2021-02-11T01:13:20+00:00","description":"MySQL users table may include the same user with two accounts, one with wildcard and one with localhost. Wildcard typically means any host.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/MySQL-User-with-wildcard-and-localhost-Hosts.jpg","width":557,"height":291,"caption":"MySQL User with wildcard and localhost Hosts"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/mysql-user-wildcard-and-localhost-hosts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"MySQL User With wildcard and localhost Hosts"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1","name":"XTIVIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","caption":"XTIVIA"},"url":"https:\/\/virtual-dba.com\/author\/xtivia\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/38335","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=38335"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/38335\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/38338"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=38335"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=38335"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=38335"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}