{"id":8729,"date":"2023-06-30T05:52:50","date_gmt":"2023-06-30T05:52:50","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=ht_kb&#038;p=8729"},"modified":"2024-06-07T13:02:40","modified_gmt":"2024-06-07T13:02:40","password":"","slug":"lamp-stack-on-centos-8","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/","title":{"rendered":"How To Set Up LAMP Stack On CentOS 8"},"content":{"rendered":"\n<p>Do you know how to set up the LAMP stack on CentOS 8? Today, we\u2019ll help you do that and also learn more!<\/p>\n\n\n\n<p>LAMP stands for Linux, Apache, MariaDB, and PHP. They are open-source resources that allow you to manage your online presence.<\/p>\n\n\n\n<p>CentOS is a Linux-based operating system. It provides enterprise-class service managed by Red Hat Enterprise Linux (RHEL).<\/p>\n\n\n\n<p>The LAMP stack (Linux, Apache, MySQL, and PHP) is commonly used on CentOS for several reasons:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why use LAMP stack on CentOS<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\"><li>Stability and security- CentOS is a Linux distribution known for its stability and long-term support. It provides a secure environment for hosting web applications, making it a reliable choice for production systems.<\/li><li>Cost-effective- it\u2019s a free and open-source operating system, just like the components of the LAMP stack. It\u2019s the ideal solution for web application development and hosting.<\/li><li>Apache web server- CentOS provides seamless integration with Apache, allowing optimal utilization of its features and capabilities.<\/li><li>MySQL Database- offers excellent compatibility and support for MySQL, making it an ideal choice for hosting database-driven web applications.<\/li><li>PHP scripting language- PHP is a versatile and widely adopted server-side scripting language for web development. CentOS provides a reliable and efficient environment for running PHP applications, ensuring compatibility and performance.<\/li><li>Community support- has a large and active community of users and developers, providing access to extensive documentation, forums, and resources. This community support makes troubleshooting and finding solutions easier when using the LAMP stack on CentOS.<\/li><li>Server Administration Tools- CentOS offers a range of server administration tools and utilities, such as yum package manager, firewalld for firewall configuration, and SELinux for enhanced security. These tools simplify the management and maintenance of the LAMP stack components on CentOS.<\/li><\/ol>\n\n\n\n<p>Before setting up the LAMP, here are some things you need:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>A server running CentOS 8 Linux<\/li><li>A terminal window\/command line (Search &gt; terminal)<\/li><li>A user account with sudo or root privileges<\/li><li>The yum and RPM package managers are included by default.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Let\u2019s proceed to set up the Lamp stack:<\/strong><\/h2>\n\n\n\n<p>The first step is to ensure that your operating system is up-to-date. It ensures that the packages to be installed run smoothly.<\/p>\n\n\n\n<p>To do this, use this code:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo yum update<\/em><\/li><\/ul>\n\n\n\n<p>Once this is done, let\u2019s install Apache, the web server.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">1. <strong>Run this code to install Apache;<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo yum -y install httpd<\/em><\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI\" alt=\"Apache Installation\"\/><\/figure>\n\n\n\n<p>That\u2019s a confirmation that you have installed Apache. Now, configure the firewall by adding this code below:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo firewall-cmd &#8211;permanent &#8211;add-service=http<\/em><\/li><\/ul>\n\n\n\n<p>It adds a secure connection from the terminal using port 80. Start the service using this code and then the IP listed to test the web server.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo systemctl start httpd.service<\/em><\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">2. <strong>Now that Apache is running let\u2019s install MySQL\/MariaDB.\u00a0<\/strong><\/h4>\n\n\n\n<p>It helps you manage the database. Start by adding the repository. Then run the check by the below code.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>rpm -ivh <\/em><a href=\"https:\/\/dev.mysql.com\/get\/mysql80-community-release-el8-1.noarch.rpm\"><em>https:\/\/dev.mysql.com\/get\/mysql80-community-release-el8-1.noarch.rpm<\/em><\/a><\/li><li><em>sudo yum repolist all |grep mysql | grep enabled<\/em><\/li><\/ul>\n\n\n\n<p>Now let\u2019s run MySQL by;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo yum &#8211;disablerepo=AppStream install -y mysql-community-server<\/em><\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/ERyJ5xLVvk00_9vSxOnojDNeJbgMstL0MZR_Plg8WZ_PYVuIQb6HphJfeA0f_RvYgn98UP8L9USL1ZjRMI23EKCljIXyBgMOSQ0Tyj8wZND-X4VY3FacPc4WS1f8zQ0koRmMh_iswO8Rq_lW6J7tYW0\" alt=\"MySQL\n\"\/><\/figure>\n\n\n\n<p>It\u2019s done now; secure it by adding a password.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>cat \/var\/log\/mysqld.log | grep -i &#8216;temporary password.\u2019<\/em><\/li><li><em>sudo mysql_secure_installation<\/em><\/li><\/ul>\n\n\n\n<p>Under the prompts, add the secure password and hit enter. For more security, ensure to do this too:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Remove anonymous users? (y)<\/li><li>Disallow root login remotely? (y)<\/li><li>Remove test database and access to it? (y)<\/li><li>Reload privilege tables now? (y)<\/li><\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">3. <strong>Let\u2019s now set up the PHP and restart the web server.<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo yum -y install php php-pdo php-pecl-zip php-json php-common php-fpm php-mbstring php-cli php-mysqlnd wget upzip<\/em><\/li><li><em>sudo systemctl restart httpd.service<\/em><\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/JXnvCs-et3tHGdv4DPgmrhdzM00p7cAIpeYXDD6tzonzxNme0XEVdWnVmVEoXOPBTwSJMrXU3LZumK-UbfNf_NW1ZfvRkZEK3SkETXrTx-A8DHhxeiNhJPRLToSP2KqOLPB0p5jMx3ZpRk0D-Bv-FOM\" alt=\"mysql\"\/><\/figure>\n\n\n\n<p>Once it\u2019s running, let\u2019s proceed to add more security to it;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo firewall-cmd &#8211;permanent &#8211;zone=public &#8211;add-service=http<\/em><\/li><li><em>sudo firewall-cmd &#8211;permanent &#8211;zone=public &#8211;add-service=https<\/em><\/li><\/ul>\n\n\n\n<p>Restart the firewall to apply changes.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo firewall-cmd &#8211;reload<\/em><\/li><li><em>sudo firewall-cmd &#8211;permanent &#8211;list-all<\/em><\/li><\/ul>\n\n\n\n<p>Now that we have updated the changes let\u2019s test our PHP. Let\u2019s have our first site by adding this code;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><em>sudo vim \/var\/www\/html\/info.php<\/em><\/li><li>Add this code:&nbsp;<\/li><\/ul>\n\n\n\n<p><em>&lt;?php<\/em><\/p>\n\n\n\n<p><em>phpinfo ();<\/em><\/p>\n\n\n\n<p><em>?&gt;<\/em><\/p>\n\n\n\n<p>Save and exit the file. Test the PHP by using the web server\u2019s IP address.&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"http:\/\/ip_address\/info.php\"><em>http:\/\/ip_address\/info.php<\/em><\/a><\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/vQHEwu5jQ4sikYzGZk_jN8PQsE3vQB80RBLeVhBxG6b9mKlpaBzg3oC0UeudWDEyAIHO5OTO4euTB1Q1Jrmg7a1otsoFBCYDKJLe8b-xPn-SeOzahfqlrlSXRlm5xRwxt_2o-r8FJe02IJWL5CpkBg4\" alt=\"PHP\n\"\/><\/figure>\n\n\n\n<p>Your PHP is ready for use.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Summing up<\/strong><\/h2>\n\n\n\n<p>That\u2019s how easy it is to set up a LAMP stack on CentOS 8. LAMP provides versatility for deploying web applications.<\/p>\n\n\n\n<p>LAMP stack on CentOS combines the stability and security of CentOS with the robustness and flexibility of the LAMP components.&nbsp;<\/p>\n\n\n\n<p>This combination makes it an excellent choice for developing and hosting web applications, particularly for organizations prioritizing reliability, security, and compatibility with enterprise-level software.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you know how to set up the LAMP stack on CentOS 8? Today, we\u2019ll help you do that and also learn more! LAMP stands for Linux, Apache, MariaDB, and PHP. They are open-source resources that allow you to manage your online presence. CentOS is a Linux-based operating system. It provides enterprise-class service managed by [&hellip;]<\/p>\n","protected":false},"author":23,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[],"doc_tag":[],"class_list":["post-8729","docs","type-docs","status-publish","hentry"],"year_month":"2026-07","word_count":768,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Mark","author_nicename":"mark","author_url":"https:\/\/truehost.com\/support\/author\/mark\/"},"doc_category_info":[],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Set Up LAMP Stack On CentOS 8<\/title>\n<meta name=\"description\" content=\"Setting up LAMP Stack On CentOS 8 is easy, check this guide. You can also learn more about CentOS and LAMP and have the best experience!\" \/>\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.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Set Up LAMP Stack On CentOS 8\" \/>\n<meta property=\"og:description\" content=\"Setting up LAMP Stack On CentOS 8 is easy, check this guide. You can also learn more about CentOS and LAMP and have the best experience!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-07T13:02:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lh5.googleusercontent.com\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/\",\"name\":\"How To Set Up LAMP Stack On CentOS 8\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lh5.googleusercontent.com\\\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI\",\"datePublished\":\"2023-06-30T05:52:50+00:00\",\"dateModified\":\"2024-06-07T13:02:40+00:00\",\"description\":\"Setting up LAMP Stack On CentOS 8 is easy, check this guide. You can also learn more about CentOS and LAMP and have the best experience!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/#primaryimage\",\"url\":\"https:\\\/\\\/lh5.googleusercontent.com\\\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI\",\"contentUrl\":\"https:\\\/\\\/lh5.googleusercontent.com\\\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/knowledge-base\\\/lamp-stack-on-centos-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Set Up LAMP Stack On CentOS 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Set Up LAMP Stack On CentOS 8","description":"Setting up LAMP Stack On CentOS 8 is easy, check this guide. You can also learn more about CentOS and LAMP and have the best experience!","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.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/","og_locale":"en_US","og_type":"article","og_title":"How To Set Up LAMP Stack On CentOS 8","og_description":"Setting up LAMP Stack On CentOS 8 is easy, check this guide. You can also learn more about CentOS and LAMP and have the best experience!","og_url":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/","article_modified_time":"2024-06-07T13:02:40+00:00","og_image":[{"url":"https:\/\/lh5.googleusercontent.com\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/","url":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/","name":"How To Set Up LAMP Stack On CentOS 8","isPartOf":{"@id":"https:\/\/www.truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/#primaryimage"},"image":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/lh5.googleusercontent.com\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI","datePublished":"2023-06-30T05:52:50+00:00","dateModified":"2024-06-07T13:02:40+00:00","description":"Setting up LAMP Stack On CentOS 8 is easy, check this guide. You can also learn more about CentOS and LAMP and have the best experience!","breadcrumb":{"@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/#primaryimage","url":"https:\/\/lh5.googleusercontent.com\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI","contentUrl":"https:\/\/lh5.googleusercontent.com\/r0I9aeSKly4YJeSw-X-jkRwgVRKdRhmV4it3V7IBQULvHsvztIa8HQb61ktG95tb_B2u8ZOVt7XfBA7R5U6WxUBuKTqu16Jet62rY9rFo0Hm24-uqaWqxZUSx_dgkPaBtkaMWuvgotihrZMoIHTKgDI"},{"@type":"BreadcrumbList","@id":"https:\/\/www.truehost.com\/support\/knowledge-base\/lamp-stack-on-centos-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Set Up LAMP Stack On CentOS 8"}]},{"@type":"WebSite","@id":"https:\/\/www.truehost.com\/support\/#website","url":"https:\/\/www.truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/www.truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/www.truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/8729","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=8729"}],"version-history":[{"count":1,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/8729\/revisions"}],"predecessor-version":[{"id":8730,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/8729\/revisions\/8730"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=8729"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=8729"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=8729"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}