{"id":7597,"date":"2024-01-18T11:30:40","date_gmt":"2024-01-18T11:30:40","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=7597"},"modified":"2024-01-18T11:30:41","modified_gmt":"2024-01-18T11:30:41","slug":"install-config-cyberpanel-ubuntu-centos-linux","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/","title":{"rendered":"Installing CyberPanel on Ubuntu and CentOS"},"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\/2024\/01\/cyberpanel_install_en.jpg\" alt=\"setup configure CyberPanel on Ubuntu Debian CentOS almalinux redhat\" class=\"wp-image-7609\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/01\/cyberpanel_install_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/01\/cyberpanel_install_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/01\/cyberpanel_install_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/01\/cyberpanel_install_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/01\/cyberpanel_install_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p><strong>CyberPanel <\/strong>is an open-source web hosting control panel that allows you to easily manage web servers. It provides a GUI to handle domains, websites, databases, DNS zones, emails accounts and more.<\/p>\n\n\n\n<p>CyberPanel can be installed on Ubuntu and CentOS servers. The installation process is quite straightforward but does involve a few steps. This guide will walk you through the entire installation process on both Ubuntu and CentOS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before starting the installation, make sure your server meets the following requirements:<\/p>\n\n\n\n<ul>\n<li>Fresh installation of Ubuntu 18.04\/20.04\/22.04 or CentOS 7\/8. Do not install CyberPanel on an existing setup, as it can cause issues.<\/li>\n\n\n\n<li>Minimum 2GB RAM, although 4GB is recommended for better performance.<\/li>\n\n\n\n<li>Minimum 40GB disk space for full installation. 10GB for minimal install.<\/li>\n\n\n\n<li>A dedicated IP address for your server. It should not be behind NAT.<\/li>\n\n\n\n<li>OpenSSH installed and a user with root privileges.<\/li>\n\n\n\n<li>All the ports required by CyberPanel open in your firewall.<\/li>\n<\/ul>\n\n\n\n<p>Once your server is ready, you can move on to the installation steps.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1---prepare-the-server\">Step 1 &#8211; Prepare the Server<\/h2>\n\n\n\n<p>Log in to your server via SSH as root.<\/p>\n\n\n\n<p>For Ubuntu, run the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt update\n$ sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<p>For CentOS, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum update -y<\/code><\/pre>\n\n\n\n<p>This will update all the installed packages to their latest versions.<\/p>\n\n\n\n<p>Next, check that SELinux is disabled on CentOS using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo sestatus<\/code><\/pre>\n\n\n\n<p>If it shows &#8220;SELinux status: disabled&#8221;, you are good to go. If not, disable it temporarily using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo setenforce 0<\/code><\/pre>\n\n\n\n<p>Finally, reboot your server so all changes can take effect.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ reboot<\/code><\/pre>\n\n\n\n<p>The server will now be ready for the installation process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2---install-dependencies\">Step 2 &#8211; Install Dependencies<\/h2>\n\n\n\n<p>CyberPanel requires a few additional dependencies to be installed beforehand.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"on-ubuntu\">On Ubuntu:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install wget curl lscpu python3 git redis-server python3-pip python3-virtualenv python3-dev build-essential libssl-dev libcurl4-openssl-dev libsodium-dev libjpeg-dev libffi-dev memcached dnsutils -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"on-centos\">On CentOS:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install wget curl lscpu python git redis MariaDB-server MariaDB-client memcached chrony libjpeg-devel libcurl-devel rpm-build python3 python3-devel python3-pip python3-virtualenv gcc policycoreutils-python -y<\/code><\/pre>\n\n\n\n<p>These commands will install all the required dependencies and packages.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3---install-cyberpanel\">Step 3 &#8211; Install CyberPanel<\/h2>\n\n\n\n<p>Now we are finally ready to install CyberPanel itself!<\/p>\n\n\n\n<p>Run the following command to download and execute the installer script:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo su - -c \"sh &lt;(curl https:\/\/cyberpanel.net\/install.sh || wget -O - https:\/\/cyberpanel.net\/install.sh)\"<\/code><\/pre>\n\n\n\n<p>The installer will now start asking you questions to customize your installation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"select-litespeed-version\">Select LiteSpeed Version<\/h3>\n\n\n\n<p>Choose whether you want to install CyberPanel with OpenLiteSpeed or LiteSpeed Enterprise. If you select Enterprise, enter your license key when prompted.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"select-options\">Select Options<\/h3>\n\n\n\n<p>You will be asked whether you want to install:<\/p>\n\n\n\n<ul>\n<li>PowerDNS: Handles DNS for your websites. Say Y.<\/li>\n\n\n\n<li>Postfix: Handles emails. Say Y.<\/li>\n\n\n\n<li>PureFTPd: Handles FTP accounts. Say Y.<\/li>\n\n\n\n<li>Memcached: Caching backend. Say Y.<\/li>\n\n\n\n<li>Redis: Key-value store. Say Y.<\/li>\n\n\n\n<li>Watchdog: Restarts any stalled services. Say Y.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"select-version\">Select Version<\/h3>\n\n\n\n<p>Pick the latest version of CyberPanel when prompted.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"set-admin-password\">Set Admin Password<\/h3>\n\n\n\n<p>Create a strong password for the CyberPanel admin console.<\/p>\n\n\n\n<p>The installer will now automatically install CyberPanel and all the chosen components. This process can take 5-10 minutes to complete.<\/p>\n\n\n\n<p>Once done, you will see a completion message with your credentials and important details like URLs to access CyberPanel.<\/p>\n\n\n\n<p>Your CyberPanel installation is now ready!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4---finalize-installation\">Step 4 &#8211; Finalize Installation<\/h2>\n\n\n\n<p>Although CyberPanel is installed, we need to take a couple more steps to finalize the setup.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"restart-server\">Restart Server<\/h3>\n\n\n\n<p>Restart your server for all changes to take effect:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo reboot<\/code><\/pre>\n\n\n\n<p>Wait a minute or two for it to start up again before proceeding.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"add-cyberpanel-firewall-rules\">Add CyberPanel Firewall Rules<\/h3>\n\n\n\n<p>For CyberPanel to function properly, the following ports need to be open in your firewall:<\/p>\n\n\n\n<ul>\n<li>TCP 8090 &#8211; CyberPanel Admin Console<\/li>\n\n\n\n<li>TCP 80 and TCP 443 &#8211; Web Server Traffic<\/li>\n\n\n\n<li>TCP 21 and TCP 40110-40210 &#8211; FTP Connections<\/li>\n\n\n\n<li>TCP 25, 465, 587, 110, 993 &#8211; Email Services<\/li>\n\n\n\n<li>TCP 53 and UDP 53 &#8211; DNS Traffic<\/li>\n<\/ul>\n\n\n\n<p>Add rules to allow these ports if needed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-letsencrypt-ssl-certificate\">Install LetsEncrypt SSL Certificate<\/h3>\n\n\n\n<p>Access the CyberPanel Admin Console and navigate to &#8220;Let&#8217;s Encrypt Settings&#8221;. Here you can generate and install free SSL certificates for your domains.<\/p>\n\n\n\n<p>Launch your websites with HTTPS enabled for security.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"test-cyberpanel\">Test CyberPanel<\/h3>\n\n\n\n<p>Create a new domain, host a simple HTML website under it and test access to it. Also create some email accounts and test sending\/receiving emails.<\/p>\n\n\n\n<p>This verifies that your installation is fully working.<\/p>\n\n\n\n<p>Congratulations! Your CyberPanel control panel is now ready to manage your web hosting server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"accessing-and-configuring-cyberpanel\">Accessing and Configuring CyberPanel<\/h2>\n\n\n\n<p>Once installed, you can access the CyberPanel admin dashboard using:<\/p>\n\n\n\n<p><strong>URL:<\/strong>&nbsp;<a href=\"https:\/\/serverip:8090\/\">https:\/\/serverIP:8090<\/a><\/p>\n\n\n\n<p><strong>Username:<\/strong>&nbsp;admin<\/p>\n\n\n\n<p><strong>Password:<\/strong>&nbsp;The password your set during installation<\/p>\n\n\n\n<p>On the dashboard you can:<\/p>\n\n\n\n<ul>\n<li>Create and manage domains<\/li>\n\n\n\n<li>Add and manage websites under domains<\/li>\n\n\n\n<li>Add and manage DNS zones<\/li>\n\n\n\n<li>Create email accounts<\/li>\n\n\n\n<li>Manage databases<\/li>\n\n\n\n<li>Setup SSL certificates<\/li>\n\n\n\n<li>Manage FTP accounts<\/li>\n\n\n\n<li>Install PHP\/Python applications like WordPress, Drupal etc.<\/li>\n\n\n\n<li>Access logs and statistics<\/li>\n\n\n\n<li>Manage server configurations<\/li>\n\n\n\n<li>Perform backups and restores<\/li>\n\n\n\n<li>Manage users and permissions<\/li>\n\n\n\n<li>Configure security settings like firewall and more<\/li>\n<\/ul>\n\n\n\n<p>Refer to the&nbsp;<a href=\"https:\/\/cyberpanel.net\/KnowledgeBase\/\">CyberPanel documentation<\/a>&nbsp;to understand all the features in depth. They provide guides on how to use and configure every aspect of managing your server through CyberPanel.<\/p>\n\n\n\n<p>Some important things you should do initially:<\/p>\n\n\n\n<ul>\n<li>Install free SSL certificates from Let&#8217;s Encrypt for your domains using the built-in manager.<\/li>\n\n\n\n<li>Configure Postfix for sending\/receiving emails.<\/li>\n\n\n\n<li>Install applications like PHPMyAdmin for database management.<\/li>\n\n\n\n<li>Setup FTP accounts for users to manage files.<\/li>\n\n\n\n<li>Configure security settings like firewall, fail2ban etc.<\/li>\n<\/ul>\n\n\n\n<p>Also keep your CyberPanel updated to the latest version regularly for security updates and new features.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"troubleshooting-common-issues\">Troubleshooting Common Issues<\/h2>\n\n\n\n<p>Following are some common issues faced during CyberPanel installations:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"stuck-on-loading-on-admin-dashboard\">Stuck on &#8220;Loading&#8230;&#8221; on Admin Dashboard<\/h3>\n\n\n\n<p>This is likely caused by SELinux being enabled on CentOS. Temporarily disable it by running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo setenforce 0<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"503-service-unavailable-error\">503 Service Unavailable Error<\/h3>\n\n\n\n<p>If you get a 503 error when trying to access a domain, restart the lscpd service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart lscpd<\/code><\/pre>\n\n\n\n<p>Also activate virtualenv by running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ source \/usr\/local\/CyberCP\/bin\/activate<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"firewall-blocking-access\">Firewall Blocking Access<\/h3>\n\n\n\n<p>Make sure all the required ports are open in your network firewall. Refer to the ports list given earlier in the guide.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"emails-not-being-sentreceived\">Emails Not Being Sent\/Received<\/h3>\n\n\n\n<p>Follow CyberPanel&#8217;s email configuration guide to setup and debug Postfix issues.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"websites-not-loading\">Websites Not Loading<\/h3>\n\n\n\n<p>Make sure DNS records are properly configured for your domains. And the actual website content is located in the correct directory configured in CyberPanel.<\/p>\n\n\n\n<p>Feel free to ask questions on the&nbsp;<a href=\"https:\/\/community.cyberpanel.net\/\">CyberPanel Forum<\/a>&nbsp;if you need help resolving any other issues during setup.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>Installing CyberPanel on Ubuntu and CentOS gives you a powerful open-source hosting control panel to easily manage your web servers through a GUI.<\/p>\n\n\n\n<p>Just follow this step-by-step guide during your installation and configuration, and you will have a smoothly running hosting environment. Keep your server and CyberPanel updated and secure.<\/p>\n\n\n\n<p>CyberPanel enables you to host unlimited websites on your servers while minimizing management overhead. It is a great option for small to medium hosting providers, developers and businesses running their own servers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>CyberPanel is an open-source web hosting control panel that allows you to easily manage web servers. It provides a GUI to handle domains, websites, databases, DNS zones, emails accounts and more. CyberPanel can be installed on Ubuntu and CentOS servers. The installation process is quite straightforward but does involve a few steps. This guide will ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/\" 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 CyberPanel on Ubuntu and CentOS - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"This step-by-step guide covers installing CyberPanel on Ubuntu and CentOS including prerequisites installation steps configuration troubleshooting and repair to get a smooth web hosting environment using this free open source control panel.\" \/>\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\/install-config-cyberpanel-ubuntu-centos-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing CyberPanel on Ubuntu and CentOS - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"This step-by-step guide covers installing CyberPanel on Ubuntu and CentOS including prerequisites installation steps configuration troubleshooting and repair to get a smooth web hosting environment using this free open source control panel.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/\" \/>\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=\"2024-01-18T11:30:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-18T11:30:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/01\/cyberpanel_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=\"6 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\/install-config-cyberpanel-ubuntu-centos-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"Installing CyberPanel on Ubuntu and CentOS\",\"datePublished\":\"2024-01-18T11:30:40+00:00\",\"dateModified\":\"2024-01-18T11:30:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/\"},\"wordCount\":1053,\"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\/install-config-cyberpanel-ubuntu-centos-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/\",\"name\":\"Installing CyberPanel on Ubuntu and CentOS - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2024-01-18T11:30:40+00:00\",\"dateModified\":\"2024-01-18T11:30:41+00:00\",\"description\":\"This step-by-step guide covers installing CyberPanel on Ubuntu and CentOS including prerequisites installation steps configuration troubleshooting and repair to get a smooth web hosting environment using this free open source control panel.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing CyberPanel on Ubuntu and CentOS\"}]},{\"@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=1781819544\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544\",\"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 CyberPanel on Ubuntu and CentOS - WebHi Tutorials &amp; Documentations","description":"This step-by-step guide covers installing CyberPanel on Ubuntu and CentOS including prerequisites installation steps configuration troubleshooting and repair to get a smooth web hosting environment using this free open source control panel.","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\/install-config-cyberpanel-ubuntu-centos-linux\/","og_locale":"en_US","og_type":"article","og_title":"Installing CyberPanel on Ubuntu and CentOS - WebHi Tutorials &amp; Documentations","og_description":"This step-by-step guide covers installing CyberPanel on Ubuntu and CentOS including prerequisites installation steps configuration troubleshooting and repair to get a smooth web hosting environment using this free open source control panel.","og_url":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2024-01-18T11:30:40+00:00","article_modified_time":"2024-01-18T11:30:41+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/01\/cyberpanel_install_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"Installing CyberPanel on Ubuntu and CentOS","datePublished":"2024-01-18T11:30:40+00:00","dateModified":"2024-01-18T11:30:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/"},"wordCount":1053,"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\/install-config-cyberpanel-ubuntu-centos-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/","url":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/","name":"Installing CyberPanel on Ubuntu and CentOS - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2024-01-18T11:30:40+00:00","dateModified":"2024-01-18T11:30:41+00:00","description":"This step-by-step guide covers installing CyberPanel on Ubuntu and CentOS including prerequisites installation steps configuration troubleshooting and repair to get a smooth web hosting environment using this free open source control panel.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/install-config-cyberpanel-ubuntu-centos-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"Installing CyberPanel on Ubuntu and CentOS"}]},{"@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=1781819544","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781819544","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\/7597"}],"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=7597"}],"version-history":[{"count":4,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7597\/revisions"}],"predecessor-version":[{"id":7616,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7597\/revisions\/7616"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=7597"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=7597"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=7597"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}