{"id":7444,"date":"2023-12-28T12:08:56","date_gmt":"2023-12-28T12:08:56","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=7444"},"modified":"2023-12-28T12:08:58","modified_gmt":"2023-12-28T12:08:58","slug":"setup-configure-directadmin-centos-ubuntu","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/","title":{"rendered":"Installing DirectAdmin on CentOS and Ubuntu"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en.jpg\" alt=\"Install and configure Direct Admin on CentOS 7\/8 and Ubuntu 20.04\/22.4\" class=\"wp-image-7477\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"introduction\">Introduction<\/h3>\n\n\n\n<p><strong>DirectAdmin<\/strong> stands as a robust and user-friendly hosting control panel designed for Linux-based servers. Renowned for its efficiency and ease of use, DirectAdmin simplifies complex server management tasks, making it an ideal choice for both beginners and experienced system administrators. Offering a comprehensive suite of features, DirectAdmin streamlines the deployment and administration of web hosting environments, providing a reliable foundation for website hosting, email management, and more. In this step-by-step guide, we will delve into the process of installing the latest version of DirectAdmin on both CentOS 7\/8 and Ubuntu 20.04\/22.4 servers, ensuring a smooth and tailored setup for your hosting needs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h3>\n\n\n\n<p>Before initiating the installation, ensure your system has the necessary packages and dependencies. Depending on your operating system, follow the instructions below:<\/p>\n\n\n\n<p><strong>On CentOS 7\/8:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ yum update\n$ yum install bind bind-libs bind-utils openssl openssl-devel gcc gcc-c++ flex bison make quota libaio libcom_err-devel libcurl-devel gd zlib-devel zip unzip libcap-devel cronie bzip2 cyrus-sasl-devel perl-ExtUtils-Embed autoconf automake libtool which patch mailx bzip2-devel lsof glibc-headers kernel-devel expat-devel psmisc net-tools systemd-devel libdb-devel perl-DBI perl-libwww-perl xfsprogs rsyslog logrotate crontabs file kernel-headers<\/code><\/pre>\n\n\n\n<p><strong>On Ubuntu 20.04\/22.04:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ apt update\n$ sudo apt install build-essential bind9 dnsutils gcc make openssl libssl-dev zlib1g zlib1g-dev libaio1 libaio-dev libcap-dev cron bzip2 cmake pkg-config libdb-dev libsasl2-dev libncurses5 libncurses5-dev libsystemd-dev quota patch logrotate rsyslog libc6-dev libexpat1-dev libcrypt-openssl-rsa-perl<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"downloading-and-running-installer\">Downloading and Running Installer<\/h3>\n\n\n\n<ul>\n<li>Download the auto-installer script:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ wget -O setup.sh https:\/\/www.directadmin.com\/setup.sh<\/code><\/pre>\n\n\n\n<ul>\n<li>Make the script executable:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ chmod 755 setup.sh<\/code><\/pre>\n\n\n\n<ul>\n<li>Run the installer in auto mode:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/setup.sh auto<\/code><\/pre>\n\n\n\n<ul>\n<li>Accept the license agreement.<\/li>\n\n\n\n<li>Use default options, except for the database; choose&nbsp;<strong>&#8220;MariaDB&#8221;<\/strong>&nbsp;instead of MySQL.<\/li>\n\n\n\n<li>Monitor the installation progress at&nbsp;<code>\/var\/log\/directadmin\/custombuild.xxxx.log<\/code>.<\/li>\n<\/ul>\n\n\n\n<p>The installer automatically detects the OS environment and installs Apache+PHP, DNS server, MariaDB database, and all other DirectAdmin components.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"post-install-configuration\">Post-Install Configuration<\/h3>\n\n\n\n<p>Once DirectAdmin is installed, adhere to best practices:<\/p>\n\n\n\n<ul>\n<li><strong>Enable Opcache<\/strong>&nbsp;for faster PHP performance:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ cd \/usr\/local\/directadmin\/custombuild\n$ .\/build set opcache yes  \n$ .\/build opcache<\/code><\/pre>\n\n\n\n<ul>\n<li><strong>Switch the database to MariaDB<\/strong>&nbsp;if MySQL was installed:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build set mariadb 10.6\n$ .\/build set mysql_inst mariadb\n$ .\/build set mysql_backup yes\n$ .\/build update\n$ .\/build mariadb  <\/code><\/pre>\n\n\n\n<p>The base DirectAdmin setup is now complete!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"optional-switching-web-server-to-nginx\">(Optional) Switching Web Server to Nginx<\/h3>\n\n\n\n<p>For improved performance, switch to Nginx:<\/p>\n\n\n\n<ul>\n<li>Enable PHP as FPM:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build set php1_mode php-fpm<\/code><\/pre>\n\n\n\n<ul>\n<li>Update configs:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build update <\/code><\/pre>\n\n\n\n<ul>\n<li>Install Nginx:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build set webserver nginx\n$ .\/build nginx<\/code><\/pre>\n\n\n\n<ul>\n<li>Rebuild PHP for FPM:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build php d<\/code><\/pre>\n\n\n\n<ul>\n<li>Restart services:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build restart<\/code><\/pre>\n\n\n\n<p>The web server is now running on Nginx + PHP-FPM!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"optional-switching-web-server-to-litespeed\">(Optional) Switching Web Server to LiteSpeed<\/h3>\n\n\n\n<p>For maximum performance, consider LiteSpeed web server with LSPHP:<\/p>\n\n\n\n<ul>\n<li>Update config:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build update<\/code><\/pre>\n\n\n\n<ul>\n<li>Set the webserver to LiteSpeed:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build set webserver litespeed<\/code><\/pre>\n\n\n\n<ul>\n<li>Set PHP modes to LSPHP:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build set php1_mode lsphp \n$ .\/build set php2_mode lsphp\n$ .\/build set php3_mode lsphp \n$ .\/build set php4_mode lsphp<\/code><\/pre>\n\n\n\n<ul>\n<li>Build and install:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build litespeed<\/code><\/pre>\n\n\n\n<ul>\n<li>If errors related to mod_ruid2 occur, disable it:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build set mod_ruid2 no<\/code><\/pre>\n\n\n\n<ul>\n<li>Recompile PHP for LSPHP:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$ .\/build php n<\/code><\/pre>\n\n\n\n<p>This completes the migration to LiteSpeed! Add the commercial license to finish the setup.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h3>\n\n\n\n<p>You&#8217;ve successfully installed and configured DirectAdmin on your server, tailoring it to your preference with either Nginx or LiteSpeed. These comprehensive steps ensure a robust hosting environment. Regularly check logs for updates and improvements. Congratulations on a successful setup!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction DirectAdmin stands as a robust and user-friendly hosting control panel designed for Linux-based servers. Renowned for its efficiency and ease of use, DirectAdmin simplifies complex server management tasks, making it an ideal choice for both beginners and experienced system administrators. Offering a comprehensive suite of features, DirectAdmin streamlines the deployment and administration of web ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[69,198],"tags":[],"yoast_head":"\n<title>Installing DirectAdmin on CentOS and Ubuntu - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Step-by-step guide to installing the latest version of DirectAdmin on CentOS 7\/8 and Ubuntu 20.04\/22.04 servers, ensuring a smooth setup tailored for your web hosting needs.\" \/>\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.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing DirectAdmin on CentOS and Ubuntu - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Step-by-step guide to installing the latest version of DirectAdmin on CentOS 7\/8 and Ubuntu 20.04\/22.04 servers, ensuring a smooth setup tailored for your web hosting needs.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-28T12:08:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-28T12:08:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"Installing DirectAdmin on CentOS and Ubuntu\",\"datePublished\":\"2023-12-28T12:08:56+00:00\",\"dateModified\":\"2023-12-28T12:08:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\"},\"wordCount\":362,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Linux system administration\",\"Web hosting Panels\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\",\"name\":\"Installing DirectAdmin on CentOS and Ubuntu - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-12-28T12:08:56+00:00\",\"dateModified\":\"2023-12-28T12:08:58+00:00\",\"description\":\"Step-by-step guide to installing the latest version of DirectAdmin on CentOS 7\/8 and Ubuntu 20.04\/22.04 servers, ensuring a smooth setup tailored for your web hosting needs.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing DirectAdmin on CentOS and Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"Installing DirectAdmin on CentOS and Ubuntu - WebHi Tutorials &amp; Documentations","description":"Step-by-step guide to installing the latest version of DirectAdmin on CentOS 7\/8 and Ubuntu 20.04\/22.04 servers, ensuring a smooth setup tailored for your web hosting needs.","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.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"Installing DirectAdmin on CentOS and Ubuntu - WebHi Tutorials &amp; Documentations","og_description":"Step-by-step guide to installing the latest version of DirectAdmin on CentOS 7\/8 and Ubuntu 20.04\/22.04 servers, ensuring a smooth setup tailored for your web hosting needs.","og_url":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-12-28T12:08:56+00:00","article_modified_time":"2023-12-28T12:08:58+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/directadmin_install_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"Installing DirectAdmin on CentOS and Ubuntu","datePublished":"2023-12-28T12:08:56+00:00","dateModified":"2023-12-28T12:08:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/"},"wordCount":362,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Linux system administration","Web hosting Panels"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/","url":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/","name":"Installing DirectAdmin on CentOS and Ubuntu - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-12-28T12:08:56+00:00","dateModified":"2023-12-28T12:08:58+00:00","description":"Step-by-step guide to installing the latest version of DirectAdmin on CentOS 7\/8 and Ubuntu 20.04\/22.04 servers, ensuring a smooth setup tailored for your web hosting needs.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-directadmin-centos-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"Installing DirectAdmin on CentOS and Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7444"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=7444"}],"version-history":[{"count":4,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7444\/revisions"}],"predecessor-version":[{"id":7502,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7444\/revisions\/7502"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=7444"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=7444"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=7444"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}