{"id":710,"date":"2014-07-12T19:37:56","date_gmt":"2014-07-12T19:37:56","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=710"},"modified":"2021-02-16T10:48:05","modified_gmt":"2021-02-16T10:48:05","slug":"mysql-connect-your-database-remotely","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/","title":{"rendered":"MySQL- Connect Your Database Remotely"},"content":{"rendered":"<p style=\"text-align: left;\"><span style=\"color: #000000;\">For a client programme to be able to get connected with MySQL server,It must use proper connection string,which includes server host name and your database username and password. Some applications such as WordPress, Joomla and WHMCS generally have a default configuration file which you can easily override with your own specific values. Below is the example of this access information:<\/span><\/p>\n<div class=\"command-sh\">\n<pre class=\"\">\/\/ ** MySQL settings ** \/\/\r\n \/** The name of the database for WordPress *\/\r\n define('DB_NAME', 'yourdatabasename');\r\n\/** MySQL database username *\/\r\n define('DB_USER', 'yourdatabase username');\r\n\/** MySQL database password *\/\r\n define('DB_PASSWORD', 'yourdatabase password');\r\n\/** MySQL hostname *\/\r\n define('DB_HOST', 'localhost');<\/pre>\n<\/div>\n<address>\u00a0<\/address>\n<h2 class=\"entry-title\" style=\"color: #111111; text-align: left;\">Remote Access To MySQL Database Server Within cPanel :<\/h2>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><span style=\"color: #000000;\">By default remote access to MySQL database server is disable\u00a0due to security reasons,but sometimes we need to provide remote access to database server.<\/span><\/p>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><span style=\"color: #000000;\">If you try to connect your database using third party software that does not run on the server,First you have to allow the connection from cPanel for the IP address that from you are trying to connect.\u00a0<\/span><\/p>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><span style=\"color: #000000;\">There are some programmes that you can use to connect your database remotely,\u00a0Dream Weaver can connect your databases remotely.<\/span><\/p>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><span style=\"color: #000000;\">To allow remote MySQL connection you need to make sure you have an IP address that will access the database.Once you have an IP address that you wish to connect<\/span> <span style=\"color: #000000;\">remotely<\/span>,<a title=\"cPanel Login\" href=\"https:\/\/cpanelplesk.com\/wp62\/cpanel-login\/\" target=\"_blank\" rel=\"noopener\">Login cPanel<\/a> <span style=\"color: #000000;\">and click on &#8221; Remote MySQL&#8221;<\/span><\/p>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><a href=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/remote-access-to-MySQL.jpg\"><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone wp-image-721 size-full  pleslwp\" src=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/remote-access-to-MySQL.jpg\" alt=\"remote access to MySQL\" width=\"752\" height=\"185\" srcset=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/remote-access-to-MySQL.jpg 752w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/remote-access-to-MySQL-300x74.jpg 300w\" sizes=\"(max-width: 752px) 100vw, 752px\" \/><\/a><\/p>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><span style=\"color: #000000;\">Next, you&#8217;ll need to add the IP address into the field and select &#8220;<em style=\"color: #232323;\">Add Host<\/em>&#8220;, Now\u00a0you will be able to connect to the databases remotely. You can add as many IP addresses as you need.<\/span><\/p>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><span style=\"color: #000000;\">Moreover if your IP address changes regularly you may\u00a0add a wildcard by using the<\/span><\/p>\n<p class=\"entry-title\" style=\"color: #111111; text-align: left;\"><span style=\"color: #000000;\"><strong style=\"color: #232323;\">% symbol<\/strong>. This will add all IP addresses in that range.<\/span><\/p>\n<div id=\"idgen46\" class=\"item\" style=\"color: #000000; text-align: left;\">\n<h2><\/h2>\n<h2>MySQL Server Remote Access if not using cpanel :<\/h2>\n<\/div>\n<p style=\"text-align: left;\"><span style=\"color: #000000;\">If you would like to access the local MySQL server from any external host, you can <b>allow remote access to MySQL server<\/b> as follows:<\/span><\/p>\n<div id=\"idgen46\" class=\"item\" style=\"color: #000000; text-align: left;\">\n<p><span style=\"color: #000000;\">First, login over ssh. You may need to login to your MySQL server as the root user:<\/span><\/p>\n<p><span style=\"color: #000000;\">Once connected,Start with editing mysql config file using any of your favorite editor.<\/span><\/p>\n<p><span style=\"color: #000000;\">Generally file is located at \/etc\/my.cnf location.<\/span><\/p>\n<p><span style=\"color: #000000;\">To edit the file run:<\/span><\/p>\n<div class=\"cpanel-files\"><\/div>\n<pre class=\"lang:default decode:true \">nano \/etc\/my.cnf<\/pre>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Locate the line that read as:<\/span><\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">[mysqld]<\/pre>\n<\/div>\n<p><span style=\"color: #000000;\">Make sure line skip-networking is commented (or remove line) and add following line:<\/span><\/p>\n<p><span style=\"color: #000000;\">bind-address=YOUR-SERVER-IP<\/span><\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">bind-address    = 10.11.11.10<\/pre>\n<\/div>\n<p><span style=\"color: #000000;\">Save and close the file.<\/span><\/p>\n<p><span style=\"color: #000000;\">Restart MySQL server:<\/span><\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">service mysql restart<\/pre>\n<\/div>\n<p>Finally on the last step,We needed to grant remote access to the MySQL user within the MySQL server:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">$ mysql -u root -p\r\nEnter password:\r\nmysql&gt; use mysql\r\nmysql&gt; GRANT ALL ON *database* to user@'192.168.1.4' IDENTIFIED BY 'password'; \r\n\r\n<\/pre>\n<\/div>\n<p><span style=\"color: #000000;\">Also, update firewall rules to make sure port# 3306 is open on the server that is running the mysql database.<\/span><\/p>\n<p>After the above changes, you can\u00a0connect to the mysql database from a remote client.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<div id=\"idgen46\" class=\"item\" style=\"color: #000000; text-align: left;\">\n<p>&nbsp;<\/p>\n<\/div>\n<p style=\"text-align: left;\">\n","protected":false},"excerpt":{"rendered":"<p>For a client programme to be able to get connected with MySQL server,It must use proper connection string,which includes server host name and your database username and password. Some applications such as WordPress, Joomla and WHMCS generally have a default configuration file which you can easily override with your own specific values. Below is the [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":2,"featured_media":103,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,14],"tags":[],"class_list":["post-710","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cpanel","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MySQL- Connect Your Database Remotely - cPanel Plesk<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"MySQL- Connect Your Database Remotely - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"For a client programme to be able to get connected with MySQL server,It must use proper connection string,which includes server host name and your database username and password. Some applications such as WordPress, Joomla and WHMCS generally have a default configuration file which you can easily override with your own specific values. Below is the [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Seemab Saleem\" \/>\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:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/\"},\"author\":{\"name\":\"Seemab Saleem\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\"},\"headline\":\"MySQL- Connect Your Database Remotely\",\"datePublished\":\"2014-07-12T19:37:56+00:00\",\"dateModified\":\"2021-02-16T10:48:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/\"},\"wordCount\":424,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg\",\"articleSection\":[\"Cpanel\",\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/\",\"name\":\"MySQL- Connect Your Database Remotely - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg\",\"datePublished\":\"2014-07-12T19:37:56+00:00\",\"dateModified\":\"2021-02-16T10:48:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg\",\"width\":140,\"height\":140},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MySQL- Connect Your Database Remotely\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/\",\"name\":\"cPanel Plesk\",\"description\":\"Blog on famous hosting control panels\",\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\",\"name\":\"Farooq Omer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"width\":300,\"height\":44,\"caption\":\"Farooq Omer\"},\"logo\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\",\"name\":\"Seemab Saleem\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"caption\":\"Seemab Saleem\"},\"description\":\"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!\",\"sameAs\":[\"https:\/\/cpanelplesk.com\/wp62\"],\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MySQL- Connect Your Database Remotely - cPanel Plesk","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:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/","twitter_card":"summary_large_image","twitter_title":"MySQL- Connect Your Database Remotely - cPanel Plesk","twitter_description":"For a client programme to be able to get connected with MySQL server,It must use proper connection string,which includes server host name and your database username and password. Some applications such as WordPress, Joomla and WHMCS generally have a default configuration file which you can easily override with your own specific values. Below is the [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg","twitter_misc":{"Written by":"Seemab Saleem","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/"},"author":{"name":"Seemab Saleem","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648"},"headline":"MySQL- Connect Your Database Remotely","datePublished":"2014-07-12T19:37:56+00:00","dateModified":"2021-02-16T10:48:05+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/"},"wordCount":424,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg","articleSection":["Cpanel","Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/","url":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/","name":"MySQL- Connect Your Database Remotely - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg","datePublished":"2014-07-12T19:37:56+00:00","dateModified":"2021-02-16T10:48:05+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2012\/06\/mysql-e1446793662296.jpeg","width":140,"height":140},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/mysql-connect-your-database-remotely\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"MySQL- Connect Your Database Remotely"}]},{"@type":"WebSite","@id":"https:\/\/cpanelplesk.com\/wp62\/#website","url":"https:\/\/cpanelplesk.com\/wp62\/","name":"cPanel Plesk","description":"Blog on famous hosting control panels","publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13","name":"Farooq Omer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","width":300,"height":44,"caption":"Farooq Omer"},"logo":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648","name":"Seemab Saleem","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","caption":"Seemab Saleem"},"description":"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!","sameAs":["https:\/\/cpanelplesk.com\/wp62"],"url":"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/710","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=710"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/710\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media\/103"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=710"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=710"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}