{"id":14469,"date":"2020-08-12T13:10:38","date_gmt":"2020-08-12T11:10:38","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/"},"modified":"2020-08-12T13:10:38","modified_gmt":"2020-08-12T11:10:38","slug":"installing-mariadb-server-10-5-5-on-centos-8","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/","title":{"rendered":"Installing MariaDB Server 10.5.5 on CentOS 8"},"content":{"rendered":"<p>In the following blog, you will learn how to install the latest version of the MariaDB Server 10.5.5 on CentOS 8 and how to use the mariadb user &amp; binaries instead of mysql.<br \/>\n<!--more--><br \/>\nAs a reminder, MariaDB Server is highly scalable and can be either used as a Stand Alone, a Master\/Slave or a Galera based MariaDB Cluster.<br \/>\nMariaDB Server 10.5.5 was released on 10-Aug-2020 with many new features and some notable changes as the S3 storage engine which allows to archive MariaDB tables in Amazon S3 or the binaries which are now all beginning with mariadb (mariadb-admin, mariadb-dump,&#8230;)<br \/>\nIt is the very latest release at the time of this writing.<\/p>\n<h2>Preparation<\/h2>\n<p>To get our linuxbox up-to-date, it is a good practice to always update the Linux software packages before installing anything new.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1;\">[root@mariadb-01 ~]# dnf update -y;\nLast metadata expiration check: 0:00:44 ago on Tue 11 Aug 2020 11:44:19 AM CEST.\nDependencies resolved.\n====================================================================================================================================================\nPackage                        Architecture              Version                                  Repository             Size\n====================================================================================================================================================\nInstalling:\nInstalled:\nkernel-4.18.0-193.14.2.el8_2.x86_64 kernel-core-4.18.0-193.14.2.el8_2.x86_64 kernel-modules-4.18.0-193.14.2.el8_2.x86_64 grub2-tools-efi-1:2.02-87.el8_2.x86_64 libzstd-1.4.2-2.el8.x86_64 python3-nftables-1:0.9.3-12.el8.x86_64\n\nRemoved:\ndnf-plugin-spacewalk-2.8.5-11.module_el8.1.0+211+ad6c0bc7.noarch python3-dnf-plugin-spacewalk-2.8.5-11.module_el8.1.0+211+ad6c0bc7.noarch python3-newt-0.52.20-9.el8.x86_64 python3-rhn-client-tools-2.8.16-13.module_el8.1.0+211+ad6c0bc7.x86_64\nrhn-client-tools-2.8.16-13.module_el8.1.0+211+ad6c0bc7.x86_64\n\nComplete!<\/pre>\n<p>To customize your own MariaDB YUM repository, go on <a href=\"https:\/\/mariadb.org\" rel=\"noopener noreferrer\" target=\"_blank\">https:\/\/mariadb.org<\/a>, click on Download, then on the MariaDB Repositories link.<br \/>\nJust choose your distribution and MariaDB Server version. It will then generate the content needed.<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository-2.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository-2.png\" alt=\"\" width=\"856\" height=\"396\" class=\"alignnone size-full wp-image-42397\" \/><\/a><br \/>\nYou just have to copy and paste it into a file under \/etc\/yum.repos.d\/ called mariadb.repo<br \/>\n<code>[root@CentOs8 yum.repos.d]# vi \/etc\/yum.repo.d\/mariadb.repo<br \/>\n# MariaDB 10.5 [Stable] CentOS repository list - created 2020-08-11 13:57 UTC<br \/>\n# https:\/\/mariadb.org\/download-test\/<br \/>\n[mariadb]<br \/>\nname = MariaDB<br \/>\nbaseurl = http:\/\/mirror.mva-n.net\/mariadb\/yum\/10.5\/centos8-amd64<br \/>\nmodule_hotfixes=1<br \/>\ngpgkey=http:\/\/mirror.mva-n.net\/mariadb\/yum\/RPM-GPG-KEY-MariaDB<br \/>\ngpgcheck=1<\/code><br \/>\nAfter the file is in place, we download and cache metadata for all known repos.<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1;\">[root@CentOs8 ~]#dnf makecache\nCentOS-8 - AppStream 9.9 kB\/s | 4.3 kB 00:00\nCentOS-8 - Base 27 kB\/s | 3.9 kB 00:00\nCentOS-8 - Extras 10 kB\/s | 1.5 kB 00:00\nMariaDB<\/pre>\n<h2>Installation<\/h2>\n<pre class=\"brush: bash; gutter: true; first-line: 1;\">\n[root@CentOs8 ~]# dnf search MariaDB-server\nLast metadata expiration check: 0:11:48 ago on Tue 11 Aug 2020 04:07:47 PM CEST.\n================================================= Name Exactly Matched: MariaDB-server =================================================\nMariaDB-server.x86_64 : MariaDB: a very fast and robust SQL database server     \n================================================= Name &amp; Summary Matched: MariaDB-server =============================================== \nMariaDB-server-debuginfo.x86_64 : Debug information for package MariaDB-server\n================================================= Name Matched: MariaDB-server =========================================================\nmariadb-server.x86_64 : The MariaDB server and related files\nmariadb-server-utils.x86_64 : Non-essential server utilities for MariaDB\/MySQL applications\nmariadb-server-galera.x86_64 : The configuration files and scripts for galera replication\n\n[root@CentOs8 ~]# dnf install mariadb-server\nVerifying        : MariaDB-client-10.5.5-1.el8.x86_64    50\/54                                                                                                                                                                                                 \nVerifying        : MariaDB-common-10.5.5-1.el8.x86_64    51\/54                                                                                                                                                                                                              \nVerifying        : MariaDB-server-10.5.5-1.el8.x86_64    52\/54                                                                                                                                                                                                              \nVerifying        : MariaDB-shared-10.5.5-1.el8.x86_64    53\/54                                                                                                                                                                                                             \nVerifying        : galera-4-26.4.5-1.el8.x86_64<\/pre>\n<p>The installation is successful, we can now enable, start the MariaDB service &amp; check the version<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1;\">[root@CentOs8 ~]# systemctl enable --now mariadb.service\nCreated symlink \/etc\/systemd\/system\/multi-user.target.wants\/mariadb.service \u2192 \/usr\/lib\/systemd\/system\/mariadb.service.\n[root@CentOs8 ~]# sudo systemctl start mariadb\n[root@CentOs8 ~]# systemctl status mariadb.service\n\u25cf mariadb.service - MariaDB 10.5.5 database server\n   Loaded: loaded (\/usr\/lib\/systemd\/system\/mariadb.service; enabled; vendor preset: disabled)\n  Drop-In: \/etc\/systemd\/system\/mariadb.service.d\n           \u2514\u2500migrated-from-my.cnf-settings.conf\n   Active: active (running) since Tue 2020-08-11 16:27:38 CEST; 18s ago\n[root@CentOs8 ~]# mariadb -V\nmariadb  Ver 15.1 Distrib 10.5.5-MariaDB, for Linux (x86_64) using readline 5.1<\/pre>\n<p>We secure now the mariadb instance<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1;\">[root@CentOs8 ~]# mariadb-secure-installation\nNOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB\n      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!\nIn order to log into MariaDB to secure it, we&#039;ll need the current\npassword for the root user. If you&#039;ve just installed MariaDB, and\nhaven&#039;t set the root password yet, you should just press enter here.\nEnter current password for root (enter for none):\nSetting the root password or using the unix_socket ensures that nobody\ncan log into the MariaDB root user without the proper authorisation.\nYou already have your root account protected, so you can safely answer &#039;n&#039;.\nSwitch to unix_socket authentication [Y\/n] n\n ... skipping.\n Remove anonymous users? [Y\/n] Y\n  ... Success!\nDisallow root login remotely? [Y\/n] Y\n ... Success!\n Remove test database and access to it? [Y\/n] Y\n  - Dropping test database...\n  ... Success!\n  - Removing privileges on test database...\n  ... Success!\n  Reload privilege tables now? [Y\/n] Y\n   ... Success!\n  Cleaning up...\n  All done!  If you&#039;ve completed all of the above steps, your MariaDB\n  installation should now be secure.\n  Thanks for using MariaDB!<\/pre>\n<p>We need now a mariadb user and group<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1;\">[root@CentOs8 ~]# groupadd mariadb\n[root@CentOs8 ~]# useradd -d \/home\/mariadb -m -g mariadb mariadb \n[root@CentOs8 ~]# passwd mariadb<\/pre>\n<p>We connect as root to the mariadb instance and create the user mariadb to be OS authentified<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1;highlight: [7,11]\">[mysql@CentOs8 ~]$ mariadb\n  Welcome to the MariaDB monitor.  Commands end with ; or \\g.\n  Your MariaDB connection id is 4\n  Server version: 10.5.5-MariaDB MariaDB Server\n  Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.\n  Type 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n  MariaDB [(none)]&gt; CREATE USER mariadb@localhost IDENTIFIED VIA unix_socket;\n  Query OK, 0 rows affected (0.002 sec)\n  MariaDB [(none)]&gt; flush privileges;\n  Query OK, 0 rows affected (0.000 sec)\n  MariaDB [(none)]&gt; select user,host,password from mysql.user;\n  +-------------+-----------+----------+\n  | User        | Host      | Password |\n  +-------------+-----------+----------+\n  | mariadb.sys | localhost |          |\n  | root        | localhost | invalid  |\n  | mysql       | localhost | invalid  |\n  | mariadb     | localhost |          |\n  +-------------+-----------+----------+<\/pre>\n<p>We switch user to mariadb and try the connection<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1;\">[root@CentOs8 ~]# su - mariadb\nLast login: Tue Aug 11 17:19:09 CEST 2020 on pts\/0\n[mariadb@CentOs8 ~]$ mariadb\nWelcome to the MariaDB monitor.  Commands end with ; or \\g.\nYour MariaDB connection id is 22\nServer version: 10.5.5-MariaDB MariaDB Server\nCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.\nType &#039;help;&#039; or &#039;\\h&#039; for help. Type &#039;\\c&#039; to clear the current input statement.<\/pre>\n<h2>Conclusion<\/h2>\n<p> As you can see, the installation on CentOS 8 is really fast and easy.<br \/>\nThe use of the mariadb user and binaries instead of mysql&#8217;s allows to differentiate definitely from MySQL and avoid confusion,<br \/>\nknowing that now it&#8217;s 2 different products<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the following blog, you will learn how to install the latest version of the MariaDB Server 10.5.5 on CentOS 8 and how to use the mariadb user &amp; binaries instead of mysql.<\/p>\n","protected":false},"author":28,"featured_media":14471,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229,198],"tags":[2056],"type_dbi":[],"class_list":["post-14469","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring","category-database-management","tag-mariadb-installation-centos-8"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Installing MariaDB Server 10.5.5 on CentOS 8 - dbi Blog<\/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:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing MariaDB Server 10.5.5 on CentOS 8\" \/>\n<meta property=\"og:description\" content=\"In the following blog, you will learn how to install the latest version of the MariaDB Server 10.5.5 on CentOS 8 and how to use the mariadb user &amp; binaries instead of mysql.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-12T11:10:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1904\" \/>\n\t<meta property=\"og:image:height\" content=\"1650\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Open source Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Open source Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/\"},\"author\":{\"name\":\"Open source Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/59554f0d99383431eb6ed427e338952b\"},\"headline\":\"Installing MariaDB Server 10.5.5 on CentOS 8\",\"datePublished\":\"2020-08-12T11:10:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/\"},\"wordCount\":305,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png\",\"keywords\":[\"mariadb installation CentOS 8\"],\"articleSection\":[\"Database Administration &amp; Monitoring\",\"Database management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/\",\"name\":\"Installing MariaDB Server 10.5.5 on CentOS 8 - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png\",\"datePublished\":\"2020-08-12T11:10:38+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/59554f0d99383431eb6ed427e338952b\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png\",\"width\":1904,\"height\":1650},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing MariaDB Server 10.5.5 on CentOS 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/59554f0d99383431eb6ed427e338952b\",\"name\":\"Open source Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/eb4fb12e386e8c41fdef0733e8114594cf2653e4f55e9fa2161442b8eaf3f657?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eb4fb12e386e8c41fdef0733e8114594cf2653e4f55e9fa2161442b8eaf3f657?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/eb4fb12e386e8c41fdef0733e8114594cf2653e4f55e9fa2161442b8eaf3f657?s=96&d=mm&r=g\",\"caption\":\"Open source Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/open-source-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Installing MariaDB Server 10.5.5 on CentOS 8 - dbi Blog","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:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/","og_locale":"en_US","og_type":"article","og_title":"Installing MariaDB Server 10.5.5 on CentOS 8","og_description":"In the following blog, you will learn how to install the latest version of the MariaDB Server 10.5.5 on CentOS 8 and how to use the mariadb user &amp; binaries instead of mysql.","og_url":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/","og_site_name":"dbi Blog","article_published_time":"2020-08-12T11:10:38+00:00","og_image":[{"width":1904,"height":1650,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png","type":"image\/png"}],"author":"Open source Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Open source Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/"},"author":{"name":"Open source Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/59554f0d99383431eb6ed427e338952b"},"headline":"Installing MariaDB Server 10.5.5 on CentOS 8","datePublished":"2020-08-12T11:10:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/"},"wordCount":305,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png","keywords":["mariadb installation CentOS 8"],"articleSection":["Database Administration &amp; Monitoring","Database management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/","url":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/","name":"Installing MariaDB Server 10.5.5 on CentOS 8 - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png","datePublished":"2020-08-12T11:10:38+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/59554f0d99383431eb6ed427e338952b"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/MariaDB-Repository.png","width":1904,"height":1650},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/installing-mariadb-server-10-5-5-on-centos-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Installing MariaDB Server 10.5.5 on CentOS 8"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/59554f0d99383431eb6ed427e338952b","name":"Open source Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/eb4fb12e386e8c41fdef0733e8114594cf2653e4f55e9fa2161442b8eaf3f657?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/eb4fb12e386e8c41fdef0733e8114594cf2653e4f55e9fa2161442b8eaf3f657?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/eb4fb12e386e8c41fdef0733e8114594cf2653e4f55e9fa2161442b8eaf3f657?s=96&d=mm&r=g","caption":"Open source Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/open-source-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/14469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=14469"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/14469\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/14471"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=14469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=14469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=14469"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=14469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}