{"id":4245,"date":"2022-07-19T08:00:54","date_gmt":"2022-07-19T15:00:54","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=4245"},"modified":"2022-07-19T08:00:56","modified_gmt":"2022-07-19T15:00:56","slug":"how-to-install-mysql-on-centos-9-stream","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=4245","title":{"rendered":"How To Install MySQL on CentOS 9 Stream"},"content":{"rendered":"\n<p>Hello, friends. In this post, you will learn how to install MySQL on CentOS 9 Stream.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.mysql.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">MySQL<\/a>&nbsp;is a powerful relational database manager owned by Oracle. It is open source but also has dedicated enterprise support, which makes it a great alternative to other paid solutions.<\/p>\n\n\n\n<p>Written in<a href=\"https:\/\/unixcop.com\/how-to-install-c-compiler-on-ubuntu-20-04-2\/\" target=\"_blank\" rel=\"noreferrer noopener\">&nbsp;C and C++<\/a>&nbsp;it is capable of being very fast and handling many requests per second. This makes it suitable for projects of all types and sizes.<\/p>\n\n\n\n<p>In addition to this, MySQL becomes an important tool for many developers who have it for environment testing.<\/p>\n\n\n\n<p>Let\u2019s get to it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install MySQL on CentOS 9 Stream<\/h2>\n\n\n\n<p>As expected, MySQL is present in the CentOS 9 Stream repositories. So, the process becomes simple.<\/p>\n\n\n\n<p>First, open your terminal or connect via SSH and update the system<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf update<\/code><\/pre>\n\n\n\n<p>Then, you can install MySQL with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install mysql mysql-server<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/1118798822.rsc.cdn77.org\/wp-content\/uploads\/2022\/05\/1-21-1024x319.png\"><img decoding=\"async\" src=\"https:\/\/1118798822.rsc.cdn77.org\/wp-content\/uploads\/2022\/05\/1-21-1024x319.png\" alt=\"1.- Install MySQL on CentOS 9 Stream\" class=\"wp-image-19954\"\/><\/a><figcaption>1.- Install MySQL on CentOS 9 Stream<\/figcaption><\/figure>\n\n\n\n<p>Thereafter, check the installed version<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql --version\nmysql  Ver 8.0.28 for Linux on x86_64 (Source distribution)<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Preparing MySQL for use<\/h2>\n\n\n\n<p>With MySQL installed, we need to do some configuration to get it up and running on the system. First, start the system service.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start mysqld<\/code><\/pre>\n\n\n\n<p>Then you can make it start with the system<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable mysqld<\/code><\/pre>\n\n\n\n<p>If you introduce changes to the MySQL configuration, then you have to restart it<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart mysqld<\/code><\/pre>\n\n\n\n<p>Finally, check the status of the service.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status mysqld\n\u25cf mysqld.service - MySQL 8.0 database server\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/mysqld.service; disabled; vendor preset: disabled)\n     Active: active (running) since Sat 2022-05-21 15:25:43 UTC; 11s ago\n    Process: 2573 ExecStartPre=\/usr\/libexec\/mysql-check-socket (code=exited, status=0\/SUCCESS)\n    Process: 2595 ExecStartPre=\/usr\/libexec\/mysql-prepare-db-dir mysqld.service (code=exited, status=0\/SUCCESS)\n   Main PID: 2672 (mysqld)\n     Status: \"Server is operational\"\n      Tasks: 38 (limit: 12036)\n     Memory: 465.8M\n        CPU: 5.272s\n     CGroup: \/system.slice\/mysqld.service\n             \u2514\u25002672 \/usr\/libexec\/mysqld --basedir=\/usr\n\nMay 21 15:25:35 unixcop systemd&#91;1]: Starting MySQL 8.0 database server...\nMay 21 15:25:35 unixcop mysql-prepare-db-dir&#91;2595]: Initializing MySQL database\nMay 21 15:25:43 unixcop systemd&#91;1]: Started MySQL 8.0 database server.\n<\/code><\/pre>\n\n\n\n<p>Now we have to configure it, for this we will use the command&nbsp;<code>mysql_secure_installation<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<p>You will be prompted for a password, which must be blank. If you get an error when logging in, then you can show the temporary password with this command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo grep 'temporary password' \/var\/log\/mysqld.log<\/code><\/pre>\n\n\n\n<p>Once logged in, you can change the root password. You can also evaluate the strength of this password right there.<\/p>\n\n\n\n<p>You will then be asked the following questions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Remove anonymous users?\nDisallow root login remotely? \nRemove test database and access to it?\nReload privilege tables now?<\/code><\/pre>\n\n\n\n<p>To each of them, you will have to answer&nbsp;<code>Y<\/code>.<\/p>\n\n\n\n<p>And with this, you will be able to access the MySQL console<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql -u root -p<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"https:\/\/1118798822.rsc.cdn77.org\/wp-content\/uploads\/2022\/05\/2-10.png\"><img decoding=\"async\" src=\"https:\/\/1118798822.rsc.cdn77.org\/wp-content\/uploads\/2022\/05\/2-10.png\" alt=\"2.- MySQL ready for work\" class=\"wp-image-19955\"\/><\/a><figcaption>2.- MySQL ready for work<\/figcaption><\/figure>\n\n\n\n<p>And we are ready to work.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The process of installing MySQL is something simple that we can do on our system without taking so much time. I hope you liked the process and the post as such.<\/p>\n\n\n\n<p>Ref: https:\/\/unixcop.com\/how-to-install-mysql-on-centos-9-stream\/<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello, friends. In this post, you will learn how to install MySQL on CentOS 9 Stream. MySQL&nbsp;is a powerful relational database manager owned by Oracle. It is open source but also has dedicated enterprise support, which makes it a great alternative to other paid solutions. Written in&nbsp;C and C++&nbsp;it is capable of being very fast <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=4245\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[262,5,178],"tags":[1240,1239],"class_list":["post-4245","post","type-post","status-publish","format-standard","hentry","category-centos","category-linux","category-wordpress","tag-install-mysql-on-centos-9","tag-install-mysql-on-centos-9-stream"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hello, friends. In this post, you will learn how to install MySQL on CentOS 9 Stream. MySQL is a powerful relational database manager owned by Oracle. It is open source but also has dedicated enterprise support, which makes it a great alternative to other paid solutions. Written in C and C++ it is capable of being very fast\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"install mysql on centos 9,install mysql on centos 9 stream,centos,linux family,wordpress\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=4245\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#article\",\"name\":\"How To Install MySQL on CentOS 9 Stream | Summa Lai\",\"headline\":\"How To Install MySQL on CentOS 9 Stream\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/1118798822.rsc.cdn77.org\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/1-21-1024x319.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245\\\/#articleImage\"},\"datePublished\":\"2022-07-19T08:00:54-07:00\",\"dateModified\":\"2022-07-19T08:00:56-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#webpage\"},\"articleSection\":\"CentOS, Linux Family, WordPress, Install MySQL on CentOS 9, Install MySQL on CentOS 9 Stream\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5#listItem\",\"name\":\"Linux Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5#listItem\",\"position\":2,\"name\":\"Linux Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=178#listItem\",\"name\":\"WordPress\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=178#listItem\",\"position\":3,\"name\":\"WordPress\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=178\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#listItem\",\"name\":\"How To Install MySQL on CentOS 9 Stream\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5#listItem\",\"name\":\"Linux Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#listItem\",\"position\":4,\"name\":\"How To Install MySQL on CentOS 9 Stream\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=178#listItem\",\"name\":\"WordPress\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245\",\"name\":\"How To Install MySQL on CentOS 9 Stream | Summa Lai\",\"description\":\"Hello, friends. In this post, you will learn how to install MySQL on CentOS 9 Stream. MySQL is a powerful relational database manager owned by Oracle. It is open source but also has dedicated enterprise support, which makes it a great alternative to other paid solutions. Written in C and C++ it is capable of being very fast\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4245#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2022-07-19T08:00:54-07:00\",\"dateModified\":\"2022-07-19T08:00:56-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How To Install MySQL on CentOS 9 Stream | Summa Lai","description":"Hello, friends. In this post, you will learn how to install MySQL on CentOS 9 Stream. MySQL is a powerful relational database manager owned by Oracle. It is open source but also has dedicated enterprise support, which makes it a great alternative to other paid solutions. Written in C and C++ it is capable of being very fast","canonical_url":"https:\/\/SUMMALAI.COM\/?p=4245","robots":"max-image-preview:large","keywords":"install mysql on centos 9,install mysql on centos 9 stream,centos,linux family,wordpress","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=4245#article","name":"How To Install MySQL on CentOS 9 Stream | Summa Lai","headline":"How To Install MySQL on CentOS 9 Stream","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/1118798822.rsc.cdn77.org\/wp-content\/uploads\/2022\/05\/1-21-1024x319.png","@id":"https:\/\/SUMMALAI.COM\/?p=4245\/#articleImage"},"datePublished":"2022-07-19T08:00:54-07:00","dateModified":"2022-07-19T08:00:56-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=4245#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=4245#webpage"},"articleSection":"CentOS, Linux Family, WordPress, Install MySQL on CentOS 9, Install MySQL on CentOS 9 Stream"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=4245#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=5#listItem","name":"Linux Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=5#listItem","position":2,"name":"Linux Family","item":"https:\/\/SUMMALAI.COM\/?cat=5","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=178#listItem","name":"WordPress"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=178#listItem","position":3,"name":"WordPress","item":"https:\/\/SUMMALAI.COM\/?cat=178","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=4245#listItem","name":"How To Install MySQL on CentOS 9 Stream"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=5#listItem","name":"Linux Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=4245#listItem","position":4,"name":"How To Install MySQL on CentOS 9 Stream","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=178#listItem","name":"WordPress"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=4245#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=4245#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=4245#webpage","url":"https:\/\/SUMMALAI.COM\/?p=4245","name":"How To Install MySQL on CentOS 9 Stream | Summa Lai","description":"Hello, friends. In this post, you will learn how to install MySQL on CentOS 9 Stream. MySQL is a powerful relational database manager owned by Oracle. It is open source but also has dedicated enterprise support, which makes it a great alternative to other paid solutions. Written in C and C++ it is capable of being very fast","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=4245#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2022-07-19T08:00:54-07:00","dateModified":"2022-07-19T08:00:56-07:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"4245","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65a0cefb5d230","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2022-07-16 03:42:56","updated":"2024-01-12 05:32:43","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=5\" title=\"Linux Family\">Linux Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=178\" title=\"WordPress\">WordPress<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow To Install MySQL on CentOS 9 Stream\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Linux Family","link":"https:\/\/SUMMALAI.COM\/?cat=5"},{"label":"WordPress","link":"https:\/\/SUMMALAI.COM\/?cat=178"},{"label":"How To Install MySQL on CentOS 9 Stream","link":"https:\/\/SUMMALAI.COM\/?p=4245"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/4245","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4245"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/4245\/revisions"}],"predecessor-version":[{"id":4246,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/4245\/revisions\/4246"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4245"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4245"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4245"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}