{"id":341,"date":"2023-11-15T18:01:52","date_gmt":"2023-11-15T18:01:52","guid":{"rendered":"https:\/\/test.samplewebsitelink.com\/ordba\/?p=341"},"modified":"2023-11-23T17:01:41","modified_gmt":"2023-11-23T17:01:41","slug":"installing-mariadb-with-the-rpm-tool","status":"publish","type":"post","link":"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/","title":{"rendered":"Installing MariaDB With the rpm Tool"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">This article describes how to download the RPM files and install them using the&nbsp;rpm&nbsp;command.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It is highly recommended to&nbsp;<a href=\"https:\/\/mariadb.com\/kb\/en\/yum\/\">Install MariaDB with yum<\/a>&nbsp;where possible.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Navigate to&nbsp;<a href=\"http:\/\/downloads.mariadb.org\/\">http:\/\/downloads.mariadb.org<\/a>&nbsp;and choose the desired database version and then select the RPMs that match your Linux distribution and architecture.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Clicking those links takes you to a local mirror. Choose the rpms link and download the desired packages. The packages will be similar to the following:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">MariaDB-client-5.2.5-99.el5.x86_64.rpm<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">MariaDB-debuginfo-5.2.5-99.el5.x86_64.rpm<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">MariaDB-devel-5.2.5-99.el5.x86_64.rpm<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">MariaDB-server-5.2.5-99.el5.x86_64.rpm<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">MariaDB-shared-5.2.5-99.el5.x86_64.rpm<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">MariaDB-test-5.2.5-99.el5.x86_64.rpm<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a standard server installation you will need to download at least the&nbsp;<em>client<\/em>,&nbsp;<em>shared<\/em>, and&nbsp;<em>server<\/em>&nbsp;RPM files. See&nbsp;<a href=\"https:\/\/mariadb.com\/kb\/en\/about-the-mariadb-rpm-files\/\">About the MariaDB RPM Files<\/a>&nbsp;for more information about what is included in each RPM package.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After downloading the MariaDB RPM files, you might want to check their signatures. See&nbsp;<a href=\"https:\/\/mariadb.com\/kb\/en\/checking-mariadb-rpm-package-signatures\/\">Checking MariaDB RPM Package Signatures<\/a>&nbsp;for more information about checking signatures.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">rpm &#8211;checksig&nbsp;<strong>$(<\/strong>find . -name &#8216;*.rpm&#8217;<strong>)<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Prior to installing MariaDB, be aware that it will conflict with an existing installation of MySQL. To check whether MySQL is already installed, issue the command:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">rpm -qa &#8216;mysql*&#8217;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If necessary, you can remove found MySQL packages before installing MariaDB.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To install MariaDB, use the command:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">rpm -ivh MariaDB-*<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You should see output such as the following:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Preparing&#8230;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [100%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp; 1:MariaDB-shared&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [ 14%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp; 2:MariaDB-client&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [ 29%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp; 3:MariaDB-client&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [ 43%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp; 4:MariaDB-debuginfo&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [ 57%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp; 5:MariaDB-devel&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [ 71%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp; 6:MariaDB-server&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [ 86%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To do so, start the server, then issue the following commands:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\/usr\/bin\/mysqladmin -u root password &#8216;new-password&#8217;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\/usr\/bin\/mysqladmin -u root -h hostname password &#8216;new-password&#8217;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Alternatively you can run:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\/usr\/bin\/mysql_secure_installation<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">which will also give you the option of removing the test<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">databases and anonymous user created by default.&nbsp; This is<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">strongly recommended for production servers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">See the MySQL manual for more instructions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Please report any problems with the \/usr\/bin\/mysqlbug script!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The latest information about MariaDB is available at http:\/\/www.askmonty.org\/.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can find additional information about the MySQL part at:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">http:\/\/dev.mysql.com<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Support MariaDB development by buying support\/new features from<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Monty Program Ab. You can contact us about this at sales@askmonty.org.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Alternatively consider joining our community based development effort:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">http:\/\/askmonty.org\/wiki\/index.php\/MariaDB#How_can_I_participate_in_the_development_of_MariaDB<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Starting MySQL&#8230;.[&nbsp; OK&nbsp; ]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Giving mysqld 2 seconds to start<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;&nbsp; 7:MariaDB-test&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ########################################### [100%]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Be sure to follow the instructions given in the preceding output and create a password for the root user either by using mysqladmin or by running the \/usr\/bin\/mysql_secure_installation script.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Installing the MariaDB RPM files installs the MySQL tools in the&nbsp;\/usr\/bin&nbsp;directory. You can confirm that MariaDB has been installed by using the MySQL client program. Issuing the command&nbsp;mysql&nbsp;should give you the MariaDB cursor.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article describes how to download the RPM files and install them using the&nbsp;rpm&nbsp;command. It is highly recommended to&nbsp;Install MariaDB with yum&nbsp;where possible. Navigate to&nbsp;http:\/\/downloads.mariadb.org&nbsp;and choose the desired database version and then select the RPMs that match your Linux distribution and architecture. Clicking those links takes you to a local mirror. Choose the rpms link &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/\"> <span class=\"screen-reader-text\">Installing MariaDB With the rpm Tool<\/span> Read More &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":320,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"footnotes":""},"categories":[13],"tags":[],"class_list":["post-341","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mariadb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Installing MariaDB With the rpm Tool - Ordba<\/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:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing MariaDB With the rpm Tool - Ordba\" \/>\n<meta property=\"og:description\" content=\"This article describes how to download the RPM files and install them using the&nbsp;rpm&nbsp;command. It is highly recommended to&nbsp;Install MariaDB with yum&nbsp;where possible. Navigate to&nbsp;http:\/\/downloads.mariadb.org&nbsp;and choose the desired database version and then select the RPMs that match your Linux distribution and architecture. Clicking those links takes you to a local mirror. Choose the rpms link &hellip; Installing MariaDB With the rpm Tool Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/\" \/>\n<meta property=\"og:site_name\" content=\"Ordba\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-15T18:01:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-23T17:01:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/test.samplewebsitelink.com\/ordba\/wp-content\/uploads\/2023\/11\/mariadb-logo1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"ordba\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ordba\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/\",\"url\":\"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/\",\"name\":\"Installing MariaDB With the rpm Tool - Ordba\",\"isPartOf\":{\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/#website\"},\"datePublished\":\"2023-11-15T18:01:52+00:00\",\"dateModified\":\"2023-11-23T17:01:41+00:00\",\"author\":{\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/#\/schema\/person\/7365beabb32b7aa77cf0e890ee90ea0f\"},\"breadcrumb\":{\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/test.samplewebsitelink.com\/ordba\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing MariaDB With the rpm Tool\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/#website\",\"url\":\"https:\/\/test.samplewebsitelink.com\/ordba\/\",\"name\":\"Ordba\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/test.samplewebsitelink.com\/ordba\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/#\/schema\/person\/7365beabb32b7aa77cf0e890ee90ea0f\",\"name\":\"ordba\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/test.samplewebsitelink.com\/ordba\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dd4335bb4e225c36ce7c56a0aff84bb202ebb523ebdc5d1e1a11cc3f3e6085f3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/dd4335bb4e225c36ce7c56a0aff84bb202ebb523ebdc5d1e1a11cc3f3e6085f3?s=96&d=mm&r=g\",\"caption\":\"ordba\"},\"sameAs\":[\"https:\/\/test.samplewebsitelink.com\/ordba\"],\"url\":\"https:\/\/test.samplewebsitelink.com\/ordba\/author\/ordba\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing MariaDB With the rpm Tool - Ordba","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:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/","og_locale":"en_US","og_type":"article","og_title":"Installing MariaDB With the rpm Tool - Ordba","og_description":"This article describes how to download the RPM files and install them using the&nbsp;rpm&nbsp;command. It is highly recommended to&nbsp;Install MariaDB with yum&nbsp;where possible. Navigate to&nbsp;http:\/\/downloads.mariadb.org&nbsp;and choose the desired database version and then select the RPMs that match your Linux distribution and architecture. Clicking those links takes you to a local mirror. Choose the rpms link &hellip; Installing MariaDB With the rpm Tool Read More &raquo;","og_url":"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/","og_site_name":"Ordba","article_published_time":"2023-11-15T18:01:52+00:00","article_modified_time":"2023-11-23T17:01:41+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-content\/uploads\/2023\/11\/mariadb-logo1.png","type":"image\/png"}],"author":"ordba","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ordba","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/","url":"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/","name":"Installing MariaDB With the rpm Tool - Ordba","isPartOf":{"@id":"https:\/\/test.samplewebsitelink.com\/ordba\/#website"},"datePublished":"2023-11-15T18:01:52+00:00","dateModified":"2023-11-23T17:01:41+00:00","author":{"@id":"https:\/\/test.samplewebsitelink.com\/ordba\/#\/schema\/person\/7365beabb32b7aa77cf0e890ee90ea0f"},"breadcrumb":{"@id":"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/test.samplewebsitelink.com\/ordba\/2023\/11\/15\/installing-mariadb-with-the-rpm-tool\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/test.samplewebsitelink.com\/ordba\/"},{"@type":"ListItem","position":2,"name":"Installing MariaDB With the rpm Tool"}]},{"@type":"WebSite","@id":"https:\/\/test.samplewebsitelink.com\/ordba\/#website","url":"https:\/\/test.samplewebsitelink.com\/ordba\/","name":"Ordba","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/test.samplewebsitelink.com\/ordba\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/test.samplewebsitelink.com\/ordba\/#\/schema\/person\/7365beabb32b7aa77cf0e890ee90ea0f","name":"ordba","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/test.samplewebsitelink.com\/ordba\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/dd4335bb4e225c36ce7c56a0aff84bb202ebb523ebdc5d1e1a11cc3f3e6085f3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dd4335bb4e225c36ce7c56a0aff84bb202ebb523ebdc5d1e1a11cc3f3e6085f3?s=96&d=mm&r=g","caption":"ordba"},"sameAs":["https:\/\/test.samplewebsitelink.com\/ordba"],"url":"https:\/\/test.samplewebsitelink.com\/ordba\/author\/ordba\/"}]}},"_links":{"self":[{"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/posts\/341","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/comments?post=341"}],"version-history":[{"count":2,"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/posts\/341\/revisions"}],"predecessor-version":[{"id":703,"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/posts\/341\/revisions\/703"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/media\/320"}],"wp:attachment":[{"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/media?parent=341"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/categories?post=341"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/test.samplewebsitelink.com\/ordba\/wp-json\/wp\/v2\/tags?post=341"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}