{"id":7288,"date":"2019-06-02T19:12:37","date_gmt":"2019-06-02T16:12:37","guid":{"rendered":"http:\/\/unihost.com\/help\/?p=7288"},"modified":"2023-09-21T17:48:47","modified_gmt":"2023-09-21T14:48:47","slug":"how-to-allow-remote-connection-to-mysql","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/","title":{"rendered":"How to allow remote connection to mysql"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-7289 size-full\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/mysql_logo_1-1.png\" alt=\"How to allow remote connection to mysql\" width=\"2000\" height=\"1035\" \/ title=\"How to allow remote connection to mysql - Image 1\"><\/p>\n<p>\u00a0<\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">This article explains how to set up a user on your MySQL server in order to connect to a MySQL <a href=\"https:\/\/unihost.com\/en\/dedicated\/database-hosting\/\">database<\/a> remotely.<!--more--><\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Many websites and applications start off with their web server and database backend hosted on the same machine. With time, though, a setup like this can become cumbersome and difficult to scale. A common solution is to separate these functions by setting up a remote database, allowing the server and database to grow at their own pace on their own machines.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">In order to perform these steps, you must have local server access to log in as the\u00a0root\u00a0MySQL user.<\/span><\/p>\n<h3 id=\"instgde-prereq-mysql-remote-create\" style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Create the remote connection<\/span><\/h3>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">To create a remote connection:<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">1. On your database server, as a user with root\u00a0privileges, open your MySQL configuration file.<\/span><\/p>\n<p style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">To locate it, enter the following command:<\/span><\/p>\n<div>\n<div>\n<pre style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"> mysql --help<\/span><\/pre>\n<div style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">The location displays similar to the following:<\/span><\/div>\n<div>\u00a0<\/div>\n<\/div>\n<\/div>\n<div>\n<pre style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Default options are read from the following files in the given order: \/etc\/my.cnf \/etc\/mysql\/my.cnf \/usr\/etc\/my.cnf ~\/.my.cnf<\/span><\/pre>\n<\/div>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">2. Navigate to the line that begins with the bind-address\u00a0directive.<\/span><\/p>\n<p style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If it exists, change the value as follows.<\/span><\/p>\n<p style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If it doesn\u2019t exist, add it anywhere except the\u00a0[mysqld]\u00a0section.<\/span><\/p>\n<pre style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">bind-address            = 0.0.0.0<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">3. Save your changes to the configuration file and exit the text editor.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">4. Restart the MySQL service:<\/span><\/p>\n<pre style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># systemctl restart mysql<\/span><\/pre>\n<h3 id=\"grant-access\" style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Grant access<\/span><\/h3>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Perform the following steps to grant access to a user from a remote host:<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">1. Log in to your MySQL server locally as the root user by using the following command:<\/span><\/p>\n<pre style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"> # mysql -u root -p\n<\/span><\/pre>\n<p style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You are prompted for your MySQL root password.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">2. Use a GRANT command in the following format to enable access for the remote user.\u00a0<\/span><\/p>\n<pre style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"># GRANT ALL ON &lt;database_name&gt;.* TO &lt;database_username&gt;@&lt;remote_server_ip_address&gt; IDENTIFIED BY '&lt;database_user_password&gt;';<\/span><\/pre>\n<h3 id=\"instgde-prereq-mysql-remote-verify\" style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Verify database access<\/span><\/h3>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">To test the connection remotely, access the MySQL server from another Linux server.<\/span><\/p>\n<pre style=\"padding-left: 40px;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">#\u00a0mysql -u &lt;database_username&gt; -h &lt;remote_server_ip_address&gt; -p<\/span><br \/><br \/><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Enter password:<\/span><br \/><br \/><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Welcome to the MySQL monitor. Commands end with ; or \\g.<\/span><br \/><br \/><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Your MySQL connection id is 17<\/span><br \/><br \/><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Server version: 5.6.26 MySQL Community Server (GPL)\n\nCopyright (c) 2000, 2015, Oracle and\/or its affiliates. All rights reserved.\n\nOracle is a registered trademark of Oracle Corporation and\/or its\naffiliates. Other names may be trademarks of their respective\nowners.<\/span><br \/><br \/><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.<\/span><br \/><br \/><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">mysql&gt; _<\/span><\/pre>\n<pre class=\"highlighter\"><code><\/code><\/pre>\n<pre class=\"highlighter\"><code><\/code><\/pre>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00a0 This article explains how to set up a user on your MySQL server in order to connect to a MySQL database remotely.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[118,515],"class_list":["post-7288","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-mysql","tag-remote-access"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to allow remote connection to mysql - Unihost.FAQ<\/title>\n<meta name=\"description\" content=\"This article explains how to set up a user on your MySQL server in order to connect to a MySQL database remotely. - Unihost.FAQ\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to allow remote connection to mysql - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"This article explains how to set up a user on your MySQL server in order to connect to a MySQL database remotely. - Unihost.FAQ\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-02T16:12:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-21T14:48:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\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:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"How to allow remote connection to mysql\",\"datePublished\":\"2019-06-02T16:12:37+00:00\",\"dateModified\":\"2023-09-21T14:48:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/\"},\"wordCount\":265,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png\",\"keywords\":[\"MySQL\",\"remote access\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/\",\"url\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/\",\"name\":\"How to allow remote connection to mysql - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png\",\"datePublished\":\"2019-06-02T16:12:37+00:00\",\"dateModified\":\"2023-09-21T14:48:47+00:00\",\"description\":\"This article explains how to set up a user on your MySQL server in order to connect to a MySQL database remotely. - Unihost.FAQ\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage\",\"url\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\/\/unihost.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to allow remote connection to mysql\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/help\/#website\",\"url\":\"https:\/\/unihost.com\/help\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/help\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\/\",\"https:\/\/x.com\/unihost\",\"https:\/\/www.instagram.com\/unihost\/?hl=en\",\"https:\/\/www.linkedin.com\/company\/unihost-com\",\"https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\/\/unihost.com\/\"],\"url\":\"https:\/\/unihost.com\/help\/author\/support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to allow remote connection to mysql - Unihost.FAQ","description":"This article explains how to set up a user on your MySQL server in order to connect to a MySQL database remotely. - Unihost.FAQ","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:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/","og_locale":"en_US","og_type":"article","og_title":"How to allow remote connection to mysql - Unihost.FAQ","og_description":"This article explains how to set up a user on your MySQL server in order to connect to a MySQL database remotely. - Unihost.FAQ","og_url":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2019-06-02T16:12:37+00:00","article_modified_time":"2023-09-21T14:48:47+00:00","og_image":[{"url":"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png","type":"","width":"","height":""}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"How to allow remote connection to mysql","datePublished":"2019-06-02T16:12:37+00:00","dateModified":"2023-09-21T14:48:47+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/"},"wordCount":265,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png","keywords":["MySQL","remote access"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/","url":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/","name":"How to allow remote connection to mysql - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png","datePublished":"2019-06-02T16:12:37+00:00","dateModified":"2023-09-21T14:48:47+00:00","description":"This article explains how to set up a user on your MySQL server in order to connect to a MySQL database remotely. - Unihost.FAQ","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#primaryimage","url":"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png","contentUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/mysql_logo_1-1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/how-to-allow-remote-connection-to-mysql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"How to allow remote connection to mysql"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7288","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=7288"}],"version-history":[{"count":5,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7288\/revisions"}],"predecessor-version":[{"id":16292,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/7288\/revisions\/16292"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=7288"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=7288"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=7288"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}