{"id":4270,"date":"2022-08-01T22:00:04","date_gmt":"2022-08-02T05:00:04","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=4270"},"modified":"2023-03-03T14:54:30","modified_gmt":"2023-03-03T22:54:30","slug":"how-to-install-wordpress-with-lamp-on-centos-stream-9","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=4270","title":{"rendered":"How to Install WordPress with LAMP on CentOS Stream 9"},"content":{"rendered":"\n<p>WordPress is a commonly used PHP-based CMS (Content Management System). For small businesses, personal blogs &amp; websites, WordPress can be a good fit.&nbsp; In this article, we are going to learn how to install WordPress on CentOS Stream 9. So, let\u2019s get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pre-requisites :<\/h2>\n\n\n\n<p>1, A system with CentOS Stream 9 installed and running.<br>2, root&nbsp;access to the system.<br>3, LAMP Stack installed and running, for this, you can refer to one of our guides on installing the&nbsp;LAMP Stack (Apache, MariaDB, and PHP.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>Once you&#8217;re all set, we&#8217;ll proceed with WordPress installation and configuration.<\/p><\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Install Wget &amp; Developer Tools<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>yum groupinstall \"Development tools\"\n\nyum install wget<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/1.png\" alt=\"\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Download WordPress<\/h2>\n\n\n\n<p>First, navigate to the<code>\/var\/www<\/code>&nbsp;directory as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www<\/code><\/pre>\n\n\n\n<p>Now, download the latest WordPress archive from the official website of WordPress with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/wordpress.org\/latest.tar.gz<\/code><\/pre>\n\n\n\n<p>Check for files with the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls<\/code><\/pre>\n\n\n\n<p>Now, extract the WordPress archive file&nbsp;<code>latest.tar.gz<\/code>&nbsp;with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar xvzf latest.tar.gz<\/code><\/pre>\n\n\n\n<p>Once the WordPress archive file&nbsp;<code>latest.tar.gz<\/code>&nbsp;is extracted, a new directory&nbsp;<code>wordpress\/<\/code>&nbsp;should be created in the folder. Now, you can remove the latest.tar.gz file as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rm -v latest.tar.gz<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Setting up FilePermission &amp; Ownership<\/h2>\n\n\n\n<p>Now, change the owner and group of the&nbsp;<code>wordpress\/<\/code>&nbsp;directory and its contents to apache as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chown -Rf apache:apache .\/wordpress\/<\/code><\/pre>\n\n\n\n<p>Now, change the permission or the&nbsp;<code>wordpress\/<\/code>&nbsp;directory and its content to 775 as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chmod -Rf 775 .\/wordpress\/<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>Use this command only if you have enabled SELinux, Otherwise don&#8217;t.<\/p><\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code>semanage fcontext -a -t httpd_sys_rw_content_t \"\/var\/www\/wordpress(\/.*)?\"<\/code><\/pre>\n\n\n\n<p>For the SELinux changes to take effect.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>restorecon -Rv \/var\/www\/wordpress<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Configuring Apache vHost<\/h2>\n\n\n\n<p>Now, create a new Apache configuration file wordpress.conf for WordPress with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vi \/etc\/httpd\/conf.d\/wordpress.conf<\/code><\/pre>\n\n\n\n<p>Now, press&nbsp;<code>i<\/code>&nbsp;to go to&nbsp;<code>INSERT<\/code>&nbsp;mode and type in the following lines of codes in the&nbsp;<code>wordpress.conf<\/code>&nbsp;file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80&gt;\nServerAdmin root@localhost\nDocumentRoot \/var\/www\/wordpress\n&lt;Directory \"\/var\/www\/wordpress\"&gt;\nOptions Indexes FollowSymLinks\nAllowOverride all\nRequire all granted\n&lt;\/Directory&gt;\nErrorLog \/var\/log\/httpd\/wordpress_error.log\nCustomLog \/var\/log\/httpd\/wordpress_access.log common\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<p>Finally, the&nbsp;<code>wordpress.conf<\/code>&nbsp;will look like the image shown below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/12.png\" alt=\"\"\/><\/figure>\n\n\n\n<p>Now, press the&nbsp;<code>Esc<\/code>&nbsp;key, and type in&nbsp;<code>:wq!<\/code>&nbsp;and press the&nbsp;<code>Enter<\/code>&nbsp;key to save and exit the file.<\/p>\n\n\n\n<p>Now, restart &amp; check the Apache httpd service with the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl restart httpd\n\nsystemctl restart httpd<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/4.png\" alt=\"\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Configuring Database<\/h2>\n\n\n\n<p>Now create a Database, User &amp; Password for WordPress:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -u root\n\nCREATE DATABASE wordpress;\n\nGRANT ALL ON wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'secret';\n\nFLUSH PRIVILEGES;\n\nquit<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/5.png\" alt=\"\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Configuring WordPress<\/h2>\n\n\n\n<p>Now open the IP address from your browser, this will redirect you to the wp-admin part of configuring the final parts of WordPress installation.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;IP_address<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>Replace the&nbsp;<code>IP_address<\/code>&nbsp;with the actual IP of the server.<\/p><\/blockquote>\n\n\n\n<p>Input the Database details which was configured earlier.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/6.png\" alt=\"\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/7.png\" alt=\"\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/8.png\" alt=\"\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/9.png\" alt=\"\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/10.png\" alt=\"\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/11.png\" alt=\"\"\/><\/figure>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>Now you have successfully installed WordPress with LAMP on your server.<\/p><\/blockquote>\n\n\n\n<p>Ref: https:\/\/wiki.crowncloud.net\/?How_to_Install_WordPress_with_LAMP_on_CentOS_Stream_9<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress is a commonly used PHP-based CMS (Content Management System). For small businesses, personal blogs &amp; websites, WordPress can be a good fit.&nbsp; In this article, we are going to learn how to install WordPress on CentOS Stream 9. So, let\u2019s get started. Pre-requisites : 1, A system with CentOS Stream 9 installed and running.2, <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=4270\">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":[104,262,5,178],"tags":[1263,1264,1262],"class_list":["post-4270","post","type-post","status-publish","format-standard","hentry","category-apache","category-centos","category-linux","category-wordpress","tag-install-lamp-on-centos-stream-9","tag-install-wordpress-on-centos-stream-9","tag-install-wordpress-with-lamp-on-centos-stream-9"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"WordPress is a commonly used PHP-based CMS (Content Management System). For small businesses, personal blogs &amp; websites, WordPress can be a good fit. In this article, we are going to learn how to install WordPress on CentOS Stream 9. So, let\u2019s get started. Pre-requisites : 1, A system with CentOS Stream 9 installed and running.2,\" \/>\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 lamp on centos stream 9,install wordpress on centos stream 9,install wordpress with lamp on centos stream 9,apache,centos,linux family,wordpress\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=4270\" \/>\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=4270#article\",\"name\":\"How to Install WordPress with LAMP on CentOS Stream 9 | Summa Lai\",\"headline\":\"How to Install WordPress with LAMP on CentOS Stream 9\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/wiki.crowncloud.net\\\/images\\\/LAMP_CentOS_Stream_9\\\/WordPress\\\/1.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270\\\/#articleImage\"},\"datePublished\":\"2022-08-01T22:00:04-07:00\",\"dateModified\":\"2023-03-03T14:54:30-08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270#webpage\"},\"articleSection\":\"Apache, CentOS, Linux Family, WordPress, Install LAMP on CentOS Stream 9, Install WordPress on CentOS Stream 9, Install WordPress with LAMP on CentOS Stream 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270#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=104#listItem\",\"name\":\"Apache\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=104#listItem\",\"position\":3,\"name\":\"Apache\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=104\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270#listItem\",\"name\":\"How to Install WordPress with LAMP on CentOS Stream 9\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=5#listItem\",\"name\":\"Linux Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270#listItem\",\"position\":4,\"name\":\"How to Install WordPress with LAMP on CentOS Stream 9\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=104#listItem\",\"name\":\"Apache\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270#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=4270#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=4270#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270\",\"name\":\"How to Install WordPress with LAMP on CentOS Stream 9 | Summa Lai\",\"description\":\"WordPress is a commonly used PHP-based CMS (Content Management System). For small businesses, personal blogs & websites, WordPress can be a good fit. In this article, we are going to learn how to install WordPress on CentOS Stream 9. So, let\\u2019s get started. Pre-requisites : 1, A system with CentOS Stream 9 installed and running.2,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=4270#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2022-08-01T22:00:04-07:00\",\"dateModified\":\"2023-03-03T14:54:30-08: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 WordPress with LAMP on CentOS Stream 9 | Summa Lai","description":"WordPress is a commonly used PHP-based CMS (Content Management System). For small businesses, personal blogs & websites, WordPress can be a good fit. In this article, we are going to learn how to install WordPress on CentOS Stream 9. So, let\u2019s get started. Pre-requisites : 1, A system with CentOS Stream 9 installed and running.2,","canonical_url":"https:\/\/SUMMALAI.COM\/?p=4270","robots":"max-image-preview:large","keywords":"install lamp on centos stream 9,install wordpress on centos stream 9,install wordpress with lamp on centos stream 9,apache,centos,linux family,wordpress","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=4270#article","name":"How to Install WordPress with LAMP on CentOS Stream 9 | Summa Lai","headline":"How to Install WordPress with LAMP on CentOS Stream 9","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/wiki.crowncloud.net\/images\/LAMP_CentOS_Stream_9\/WordPress\/1.png","@id":"https:\/\/SUMMALAI.COM\/?p=4270\/#articleImage"},"datePublished":"2022-08-01T22:00:04-07:00","dateModified":"2023-03-03T14:54:30-08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=4270#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=4270#webpage"},"articleSection":"Apache, CentOS, Linux Family, WordPress, Install LAMP on CentOS Stream 9, Install WordPress on CentOS Stream 9, Install WordPress with LAMP on CentOS Stream 9"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=4270#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=104#listItem","name":"Apache"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=104#listItem","position":3,"name":"Apache","item":"https:\/\/SUMMALAI.COM\/?cat=104","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=4270#listItem","name":"How to Install WordPress with LAMP on CentOS Stream 9"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=5#listItem","name":"Linux Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=4270#listItem","position":4,"name":"How to Install WordPress with LAMP on CentOS Stream 9","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=104#listItem","name":"Apache"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=4270#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=4270#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=4270#webpage","url":"https:\/\/SUMMALAI.COM\/?p=4270","name":"How to Install WordPress with LAMP on CentOS Stream 9 | Summa Lai","description":"WordPress is a commonly used PHP-based CMS (Content Management System). For small businesses, personal blogs & websites, WordPress can be a good fit. In this article, we are going to learn how to install WordPress on CentOS Stream 9. So, let\u2019s get started. Pre-requisites : 1, A system with CentOS Stream 9 installed and running.2,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=4270#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2022-08-01T22:00:04-07:00","dateModified":"2023-03-03T14:54:30-08: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":"4270","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-65a0cefb88ace","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-08-02 04:57:46","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=104\" title=\"Apache\">Apache<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Install WordPress with LAMP on CentOS Stream 9\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Linux Family","link":"https:\/\/SUMMALAI.COM\/?cat=5"},{"label":"Apache","link":"https:\/\/SUMMALAI.COM\/?cat=104"},{"label":"How to Install WordPress with LAMP on CentOS Stream 9","link":"https:\/\/SUMMALAI.COM\/?p=4270"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/4270","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=4270"}],"version-history":[{"count":4,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/4270\/revisions"}],"predecessor-version":[{"id":4663,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/4270\/revisions\/4663"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4270"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4270"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}