{"id":13349,"date":"2024-02-22T15:16:48","date_gmt":"2024-02-22T12:16:48","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13349"},"modified":"2024-02-22T15:16:49","modified_gmt":"2024-02-22T12:16:49","slug":"how-to-transfer-all-mysql-databases-from-old-to-new-server","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/","title":{"rendered":"How to Transfer All MySQL Databases from Old to New Server"},"content":{"rendered":"\n

Moving your MySQL databases from an old server to a new one is a common task when upgrading hardware, migrating to a different hosting provider, or simply reconfiguring your infrastructure. This process requires careful planning and execution to ensure data integrity and minimal downtime. In this blog post, we’ll guide you through the steps to transfer all your MySQL databases<\/a> from the old server to the new one.<\/p>\n\n\n\n

Note:<\/strong> Before proceeding, make sure you have full access to both the old and new servers and have administrative privileges for MySQL<\/a>. Additionally, always back up your databases and configurations to avoid data loss.<\/p>\n\n\n\n

Step 1: Backup Databases on the Old Server<\/strong><\/h2>\n\n\n\n

The first step in transferring MySQL databases is to create a backup on the old server. You can use the mysqldump<\/code> tool to generate SQL dump files for each database. Open your terminal and run the following command for each database:<\/p>\n\n\n\n

$ mysqldump -u username -p dbname > dbname.sql<\/code><\/pre>\n\n\n\n
    \n
  • Replace username<\/code> with your MySQL username.<\/li>\n\n\n\n
  • Replace dbname<\/code> with the name of the database you want to back up.<\/li>\n\n\n\n
  • You will be prompted to enter your MySQL password.<\/li>\n<\/ul>\n\n\n\n

    Repeat this command for each database you want to transfer.<\/p>\n\n\n\n

    Step 2: Copy Backup Files to the New Server<\/strong><\/h2>\n\n\n\n

    Once you have generated backup files for all your databases, transfer these files to the new server. You can use various methods like SCP, SFTP, or a simple file transfer tool to move the .sql<\/code> files to the new server.<\/p>\n\n\n\n

    $ scp dbname.sql username@new_server_ip:\/path\/to\/destination<\/code><\/pre>\n\n\n\n
      \n
    • Replace dbname.sql<\/code> with the name of the backup file.<\/li>\n\n\n\n
    • Replace username<\/code> with your username on the new server.<\/li>\n\n\n\n
    • Replace new_server_ip<\/code> with the IP address or hostname of the new server.<\/li>\n\n\n\n
    • Replace \/path\/to\/destination<\/code> with the directory where you want to store the backup file on the new server.<\/li>\n<\/ul>\n\n\n\n

      Step 3: Restore Databases on the New Server<\/strong><\/h2>\n\n\n\n

      After copying the backup files to the new server, it’s time to restore your databases. Log in to the new server and navigate to the directory containing the backup files. Then, run the following command for each database:<\/p>\n\n\n\n

      $ mysql -u username -p dbname < dbname.sql<\/code><\/pre>\n\n\n\n
        \n
      • Replace username<\/code> with your MySQL username on the new server.<\/li>\n\n\n\n
      • Replace dbname<\/code> with the name of the database you want to restore.<\/li>\n\n\n\n
      • You will be prompted to enter your MySQL password.<\/li>\n<\/ul>\n\n\n\n

        Repeat this command for each database backup file you transferred.<\/p>\n\n\n\n

        Step 4: Update Database Users and Privileges<\/strong><\/h2>\n\n\n\n

        Database users and their privileges are associated with the MySQL server, not the databases themselves. Therefore, you need to ensure that user accounts and permissions are correctly configured on the new server. This can involve creating the same users with the same passwords and privileges they had on the old server.<\/p>\n\n\n\n

        To create a user, run the following command on the new server:<\/p>\n\n\n\n

        CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';<\/code><\/pre>\n\n\n\n

        Replace 'username'<\/code> with the desired username and 'password'<\/code> with the user’s password.<\/p>\n\n\n\n

        After creating the users, grant them the necessary privileges for the specific databases they should access:<\/p>\n\n\n\n

        GRANT ALL PRIVILEGES ON dbname.* TO 'username'@'localhost';<\/code><\/pre>\n\n\n\n

        Make sure to replace 'dbname'<\/code> with the actual database name, 'username'<\/code> with the username you created, and 'localhost'<\/code> with the appropriate hostname or IP address.<\/p>\n\n\n\n

        Step 5: Test the Databases on the New Server<\/strong><\/h2>\n\n\n\n

        Once you’ve restored the databases and recreated the user accounts, it’s essential to test the functionality of your applications on the new server. Verify that your data is intact and that any connections and queries are working as expected.<\/p>\n\n\n\n

        Step 6: Update DNS and Configuration Files (if necessary)<\/strong><\/h2>\n\n\n\n

        If you’re migrating to a new server with a different IP address or domain, update your DNS records and any configuration files in your applications to point to the new server. This step is critical for ensuring that traffic is directed to the correct server after the migration.<\/p>\n\n\n\n

        Step 7: Monitor for Issues<\/strong><\/h2>\n\n\n\n

        After completing the migration, it’s crucial to monitor the new server for any issues, performance bottlenecks, or discrepancies in data. Check your server logs, database performance, and user reports to ensure everything is functioning correctly.<\/p>\n\n\n\n

        Conclusion<\/strong><\/h2>\n\n\n\n

        Transferring all your MySQL databases from an old server to a new one can be a complex process, but with careful planning and execution, it can be achieved without significant downtime or data loss. Remember to create backups, copy and restore databases, update user accounts and privileges, test your applications, and monitor the new server for any issues. Properly executed, this migration ensures a seamless transition to a new server, allowing you to take advantage of improved hardware or infrastructure while maintaining the integrity of your data.<\/p>\n","protected":false},"excerpt":{"rendered":"

        Moving your MySQL databases from an old server to a new one is a common task when upgrading hardware, migrating to a different hosting provider, or simply reconfiguring your infrastructure….<\/p>\n","protected":false},"author":1,"featured_media":13754,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16],"tags":[177,178,180,350,393,424,433,449,591],"yoast_head":"\nHow to Transfer All MySQL Databases from Old to New Server<\/title>\n<meta name=\"description\" content=\"Use the tips discussed here if you want to properly transfer all MySQL databases from one server to another\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Transfer All MySQL Databases from Old to New Server\" \/>\n<meta property=\"og:description\" content=\"Use the tips discussed here if you want to properly transfer all MySQL databases from one server to another\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-22T12:16:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-22T12:16:49+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Transfer All MySQL Databases from Old to New Server\",\"datePublished\":\"2024-02-22T12:16:48+00:00\",\"dateModified\":\"2024-02-22T12:16:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/\"},\"wordCount\":724,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg\",\"keywords\":[\"Data\",\"Data Recovery\",\"Database\",\"Libraries\",\"MySQL\",\"Open Source\",\"Optimization\",\"Performance\",\"Tools\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/\",\"name\":\"How to Transfer All MySQL Databases from Old to New Server\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg\",\"datePublished\":\"2024-02-22T12:16:48+00:00\",\"dateModified\":\"2024-02-22T12:16:49+00:00\",\"description\":\"Use the tips discussed here if you want to properly transfer all MySQL databases from one server to another\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Transfer All MySQL Databases\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Transfer All MySQL Databases from Old to New Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Transfer All MySQL Databases from Old to New Server","description":"Use the tips discussed here if you want to properly transfer all MySQL databases from one server to another","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":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Transfer All MySQL Databases from Old to New Server","og_description":"Use the tips discussed here if you want to properly transfer all MySQL databases from one server to another","og_url":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-02-22T12:16:48+00:00","article_modified_time":"2024-02-22T12:16:49+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Transfer All MySQL Databases from Old to New Server","datePublished":"2024-02-22T12:16:48+00:00","dateModified":"2024-02-22T12:16:49+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/"},"wordCount":724,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg","keywords":["Data","Data Recovery","Database","Libraries","MySQL","Open Source","Optimization","Performance","Tools"],"articleSection":["Articles","Guides","How To","Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/","url":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/","name":"How to Transfer All MySQL Databases from Old to New Server","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg","datePublished":"2024-02-22T12:16:48+00:00","dateModified":"2024-02-22T12:16:49+00:00","description":"Use the tips discussed here if you want to properly transfer all MySQL databases from one server to another","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Transfer-All-MySQL-Databases.jpg","width":1280,"height":680,"caption":"Transfer All MySQL Databases"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-transfer-all-mysql-databases-from-old-to-new-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Transfer All MySQL Databases from Old to New Server"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13349"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13349"}],"version-history":[{"count":2,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13349\/revisions"}],"predecessor-version":[{"id":13755,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13349\/revisions\/13755"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13754"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13349"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}