{"id":14316,"date":"2024-06-24T11:36:04","date_gmt":"2024-06-24T08:36:04","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=14316"},"modified":"2024-06-24T11:36:05","modified_gmt":"2024-06-24T08:36:05","slug":"do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/","title":{"rendered":"Do This to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems"},"content":{"rendered":"\n

MariaDB is a popular open-source relational database management system that is widely used for its performance, scalability, and robust feature set. Installing MariaDB 11.5.1 on Rocky Linux 8.10 is a straightforward process. In this guide, we will walk you through the steps needed to get MariaDB up and running on your system.<\/p>\n\n\n\n

Prerequisites<\/h2>\n\n\n\n

Before we start, make sure you have:<\/p>\n\n\n\n

    \n
  1. A Rocky Linux<\/a> 8.10 server.<\/li>\n\n\n\n
  2. Root or sudo access to your server.<\/li>\n\n\n\n
  3. A stable internet connection.<\/li>\n<\/ol>\n\n\n\n

    Step 1: Update Your System<\/h2>\n\n\n\n

    Before installing any new software, it’s always a good idea to update your system to ensure you have the latest packages and security patches.<\/p>\n\n\n\n

    $ sudo dnf update -y<\/code><\/pre>\n\n\n\n

    Step 2: Add the MariaDB Repository<\/h2>\n\n\n\n

    MariaDB is not included in the default Rocky Linux repositories, so you need to add the MariaDB repository to your system.<\/p>\n\n\n\n

    First, create a new repo file for MariaDB:<\/p>\n\n\n\n

    $ sudo nano \/etc\/yum.repos.d\/MariaDB.repo<\/code><\/pre>\n\n\n\n

    Add the following content to the file:<\/p>\n\n\n\n

    # MariaDB 11.5.1 CentOS repository list - created 2024-06-17 10:00 UTC\n# http:\/\/downloads.mariadb.org\/mariadb\/repositories\/\n[mariadb]\nname = MariaDB\nbaseurl = http:\/\/yum.mariadb.org\/11.5.1\/centos8-amd64\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\ngpgcheck=1<\/code><\/pre>\n\n\n\n

    Save and close the file by pressing Ctrl + X<\/code>, then Y<\/code>, and Enter<\/code>.<\/p>\n\n\n\n

    Step 3: Install MariaDB<\/h2>\n\n\n\n

    With the repository added, you can now install MariaDB using the dnf<\/code> package manager.<\/p>\n\n\n\n

    bashCopy codesudo dnf install MariaDB-server MariaDB-client -y\n<\/code><\/pre>\n\n\n\n
    $ sudo dnf install MariaDB-server MariaDB-client -y<\/code><\/pre>\n\n\n\n

    Step 4: Start and Enable MariaDB<\/h2>\n\n\n\n

    After installation, start the MariaDB service and enable it to start on boot.<\/p>\n\n\n\n

    $ sudo systemctl start mariadb\n$ sudo systemctl enable mariadb<\/code><\/pre>\n\n\n\n

    You can verify that MariaDB is running with the following command:<\/p>\n\n\n\n

    $ sudo systemctl status mariadb<\/code><\/pre>\n\n\n\n

    Step 5: Secure the MariaDB Installation<\/h2>\n\n\n\n

    MariaDB includes a security script to improve the security of your installation. Run the script to set the root password, remove anonymous users, disallow remote root login, and remove the test database.<\/p>\n\n\n\n

    $ sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n

    You will be prompted to enter the current root password, which is blank by default. Just press Enter<\/code>. Then follow the prompts to set a root password and answer Y<\/code> (yes) to all the subsequent questions.<\/p>\n\n\n\n

    Step 6: Verify the Installation<\/h2>\n\n\n\n

    To verify that MariaDB is installed and working correctly, log in to the MariaDB shell using the root user.<\/p>\n\n\n\n

    $ sudo mysql -u root -p<\/code><\/pre>\n\n\n\n

    Enter the root password you set earlier. If you successfully log in, you should see the MariaDB shell prompt:<\/p>\n\n\n\n

    Welcome to the MariaDB monitor.  Commands end with ; or \\g.\nYour MariaDB connection id is 10\nServer version: 11.5.1-MariaDB MariaDB Server<\/code><\/pre>\n\n\n\n

    You can also check the MariaDB version:<\/p>\n\n\n\n

    SELECT VERSION();<\/code><\/pre>\n\n\n\n

    This should return 11.5.1<\/code>.<\/p>\n\n\n\n

    Step 7: Create a Database (Optional)<\/h2>\n\n\n\n

    To create a new database and user, you can use the following commands within the MariaDB shell:<\/p>\n\n\n\n

    CREATE DATABASE mydatabase;\nCREATE USER 'myuser'@'localhost' IDENTIFIED BY 'mypassword';\nGRANT ALL PRIVILEGES ON mydatabase.* TO 'myuser'@'localhost';\nFLUSH PRIVILEGES;<\/code><\/pre>\n\n\n\n

    Replace mydatabase<\/code>, myuser<\/code>, and mypassword<\/code> with your desired database name, username, and password.<\/p>\n\n\n\n

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

    You have successfully installed MariaDB 11.5.1 on Rocky Linux 8.10. MariaDB is now ready to use for your applications. For more advanced configurations and optimizations, refer to the official MariaDB documentation.<\/p>\n\n\n\n

    By following these steps, you ensure that your database setup is secure and ready for production use.<\/p>\n","protected":false},"excerpt":{"rendered":"

    MariaDB is a popular open-source relational database management system that is widely used for its performance, scalability, and robust feature set. Installing MariaDB 11.5.1 on Rocky Linux 8.10 is a…<\/p>\n","protected":false},"author":1,"featured_media":14334,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,28,16,18],"tags":[],"yoast_head":"\nHow to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems<\/title>\n<meta name=\"description\" content=\"In this guide, we will walk you through the steps needed to get MariaDB up and running on your system\" \/>\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\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems\" \/>\n<meta property=\"og:description\" content=\"In this guide, we will walk you through the steps needed to get MariaDB up and running on your system\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/\" \/>\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-06-24T08:36:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-24T08:36:05+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"Do This to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems\",\"datePublished\":\"2024-06-24T08:36:04+00:00\",\"dateModified\":\"2024-06-24T08:36:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/\"},\"wordCount\":408,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg\",\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/\",\"url\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/\",\"name\":\"How to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg\",\"datePublished\":\"2024-06-24T08:36:04+00:00\",\"dateModified\":\"2024-06-24T08:36:05+00:00\",\"description\":\"In this guide, we will walk you through the steps needed to get MariaDB up and running on your system\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg\",\"width\":1280,\"height\":680,\"caption\":\"MariaDB 11.5.1 on Rocky Linux 8.10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Do This to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems\"}]},{\"@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:\/\/x.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 Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems","description":"In this guide, we will walk you through the steps needed to get MariaDB up and running on your system","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\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/","og_locale":"en_US","og_type":"article","og_title":"How to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems","og_description":"In this guide, we will walk you through the steps needed to get MariaDB up and running on your system","og_url":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-06-24T08:36:04+00:00","article_modified_time":"2024-06-24T08:36:05+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"Do This to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems","datePublished":"2024-06-24T08:36:04+00:00","dateModified":"2024-06-24T08:36:05+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/"},"wordCount":408,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg","articleSection":["Articles","Guides","How To","Software","Technology","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/","url":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/","name":"How to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg","datePublished":"2024-06-24T08:36:04+00:00","dateModified":"2024-06-24T08:36:05+00:00","description":"In this guide, we will walk you through the steps needed to get MariaDB up and running on your system","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/06\/MariaDB-11.5.1-on-Rocky-Linux-8.10.jpg","width":1280,"height":680,"caption":"MariaDB 11.5.1 on Rocky Linux 8.10"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/do-this-to-install-mariadb-11-5-1-on-rocky-linux-8-10-systems\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"Do This to Install MariaDB 11.5.1 on Rocky Linux 8.10 Systems"}]},{"@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:\/\/x.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\/14316"}],"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=14316"}],"version-history":[{"count":2,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/14316\/revisions"}],"predecessor-version":[{"id":14318,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/14316\/revisions\/14318"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/14334"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=14316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=14316"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=14316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}