{"id":10088,"date":"2024-12-31T08:39:28","date_gmt":"2024-12-31T08:39:28","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=10088"},"modified":"2024-12-31T08:40:17","modified_gmt":"2024-12-31T08:40:17","slug":"how-to-install-and-configure-ispconfig-3","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/","title":{"rendered":"How to install and configure ISPConfig 3"},"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\/12\/ispconfig_install_en.jpg\" alt=\"Install and Configure ISPConfig 3\" class=\"wp-image-10104\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/ispconfig_install_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/ispconfig_install_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/ispconfig_install_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/ispconfig_install_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/ispconfig_install_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Installing <strong>ISPConfig 3<\/strong>, a powerful open-source control panel, is now easier with the official auto-installer script. This guide offers an updated step-by-step approach based on the latest instructions, ensuring you master the process on Debian or Ubuntu servers. Whether you prefer Apache or Nginx, this guide also highlights advanced options to tailor your setup.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"system-requirements-for-ispconfig-3\"><strong>System Requirements for ISPConfig 3<\/strong><\/h2>\n\n\n\n<p>Ensure your server meets these minimum requirements before proceeding:<\/p>\n\n\n\n<ul>\n<li><strong>Supported OS:<\/strong>&nbsp;Debian 11\/12 or Ubuntu 20.04\/22.04<\/li>\n\n\n\n<li><strong>Hardware:<\/strong>&nbsp;2 GB RAM (recommended), 10 GB disk space<\/li>\n\n\n\n<li><strong>Root\/Sudo Access:<\/strong>&nbsp;Required<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-by-step-installation-guide\"><strong>Step-by-Step Installation Guide<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-update-your-server\"><strong>1. Update Your Server<\/strong><\/h3>\n\n\n\n<p>Keep your server up-to-date for the best compatibility:<\/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<h3 class=\"wp-block-heading\" id=\"2-install-prerequisites\"><strong>2. Install Prerequisites<\/strong><\/h3>\n\n\n\n<p>Install essential tools:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install curl wget lsb-release gnupg -y <\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"3-download-and-run-the-auto-installer-script\"><strong>3. Download and Run the Auto-Installer Script<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"using-curl\"><strong>Using cURL<\/strong><\/h4>\n\n\n\n<p>Run the auto-installer script directly via cURL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ curl https:\/\/get.ispconfig.org | sh  <\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"using-wget\"><strong>Using Wget<\/strong><\/h4>\n\n\n\n<p>Alternatively, use Wget:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget -O - https:\/\/get.ispconfig.org | sh  <\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"4-customize-installation-with-arguments\"><strong>4. Customize Installation with Arguments<\/strong><\/h3>\n\n\n\n<p>You can customize the installation by passing arguments to the script.<\/p>\n\n\n\n<ul>\n<li><strong>Example: Debug Mode without Mailman<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Using cURL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ curl https:\/\/get.ispconfig.org | sh -s -- --debug --no-mailman  <\/code><\/pre>\n\n\n\n<p>Using Wget:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget -O - https:\/\/get.ispconfig.org | sh -s -- --debug --no-mailman  <\/code><\/pre>\n\n\n\n<ul>\n<li><strong>View All Options<\/strong><\/li>\n<\/ul>\n\n\n\n<p>To see available options:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ curl https:\/\/get.ispconfig.org | sh -s -- --help  <\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"5-install-ispconfig-with-specific-configurations\"><strong>5. Install ISPConfig with Specific Configurations<\/strong><\/h3>\n\n\n\n<p>You can choose specific configurations during the installation:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"apache-web-server-with-passive-ftp-and-auto-updates\"><strong>Apache Web Server with Passive FTP and Auto Updates<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget -O - https:\/\/get.ispconfig.org | sh -s -- --use-ftp-ports=40110-40210 --unattended-upgrades  <\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"nginx-web-server-with-custom-port-range\"><strong>Nginx Web Server with Custom Port Range<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget -O - https:\/\/get.ispconfig.org | sh -s -- --use-nginx --use-ftp-ports=40110-40210 --unattended-upgrades  <\/code><\/pre>\n\n\n\n<p>When prompted with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">WARNING! This script will reconfigure your complete server!  \nIt should be run on a freshly installed server...  <\/code><\/pre>\n\n\n\n<p>Type&nbsp;<code>yes<\/code>&nbsp;to continue.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"6-final-steps-of-installation\"><strong>6. Final Steps of Installation<\/strong><\/h3>\n\n\n\n<p>After completion, the installer provides critical details, including ISPConfig admin and MySQL root passwords. Ensure you save these securely.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"post-installation-configuration\"><strong>Post-Installation Configuration<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-setting-up-firewall-rules\"><strong>1. Setting Up Firewall Rules<\/strong><\/h3>\n\n\n\n<p>Log into ISPConfig and navigate to&nbsp;<strong>System &gt; Firewall<\/strong>. Add the necessary ports:<\/p>\n\n\n\n<ul>\n<li><strong>TCP:<\/strong>&nbsp;20, 21, 22, 25, 80, 443, 40110:40210, 110, 143, 465, 587, 993, 995, 53, 8080, 8081<\/li>\n\n\n\n<li><strong>UDP:<\/strong>&nbsp;53<\/li>\n<\/ul>\n\n\n\n<p>The required ports for each service are as follows:<\/p>\n\n\n\n<ul>\n<li><strong>Web<\/strong>: 20, 21, 22, 80, 443, and 40110:40210 (All TCP, no UDP)<\/li>\n\n\n\n<li><strong>Mail<\/strong>: 25, 110, 143, 465, 587, 993, and 995 (All TCP, no UDP)<\/li>\n\n\n\n<li><strong>DNS<\/strong>: 53 (Both TCP and UDP)<\/li>\n\n\n\n<li><strong>Control Panel<\/strong>: 8080 and 8081 (All TCP, no UDP)<\/li>\n<\/ul>\n\n\n\n<p>Your server is now fully configured and ready for use. Access the control panel at:<br><a href=\"https:\/\/server1.example.com:8080\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/server1.example.com:8080<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-configuring-websites-email-and-dns\"><strong>2. Configuring Websites, Email, and DNS<\/strong><\/h3>\n\n\n\n<ul>\n<li><strong>Web Hosting:<\/strong>&nbsp;Go to&nbsp;<strong>Sites &gt; Add new website<\/strong>&nbsp;to configure domain settings.<\/li>\n\n\n\n<li><strong>Email Accounts:<\/strong>&nbsp;Under&nbsp;<strong>Email<\/strong>, set up email domains and accounts.<\/li>\n\n\n\n<li><strong>DNS Zones:<\/strong>&nbsp;Add A, MX, and CNAME records in the DNS section.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"3-enabling-ssl\"><strong>3. Enabling SSL<\/strong><\/h3>\n\n\n\n<p>Enable SSL using Let&#8217;s Encrypt:<\/p>\n\n\n\n<ul>\n<li>In&nbsp;<strong>Sites<\/strong>, select a website and check&nbsp;<strong>SSL Enabled<\/strong>.<\/li>\n\n\n\n<li>Save and issue a certificate.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"advanced-options-and-debugging\"><strong>Advanced Options and Debugging<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"available-command-line-arguments\"><strong>Available Command-Line Arguments<\/strong><\/h3>\n\n\n\n<p>Customize your installation using options like:<\/p>\n\n\n\n<ul>\n<li><code>--use-nginx<\/code>: Install Nginx instead of Apache.<\/li>\n\n\n\n<li><code>--no-mail<\/code>: Skip mail server setup.<\/li>\n\n\n\n<li><code>--use-ftp-ports<\/code>: Define a custom FTP port range.<\/li>\n\n\n\n<li><code>--debug<\/code>: Enable detailed logging.<\/li>\n<\/ul>\n\n\n\n<p>To view all options:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget -O - https:\/\/get.ispconfig.org | sh -s -- --help  <\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"debugging-installation-errors\"><strong>Debugging Installation Errors<\/strong><\/h3>\n\n\n\n<p>Enable debug mode for troubleshooting:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ curl https:\/\/get.ispconfig.org | sh -s -- --debug  <\/code><\/pre>\n\n\n\n<p>Logs are saved in:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">\/tmp\/ispconfig-ai\/var\/log\/ispconfig.log  <\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"faqs\"><strong>FAQs<\/strong><\/h2>\n\n\n\n<ul>\n<li>How do I install ISPConfig 3 on Ubuntu?\n<ul>\n<li>Run the command:<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ curl https:\/\/get.ispconfig.org | sh  <\/code><\/pre>\n\n\n\n<ul>\n<li>Can I choose Nginx over Apache?\n<ul>\n<li>Yes, add the argument&nbsp;<code>--use-nginx<\/code>&nbsp;to the installer script.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<ul>\n<li>What are the default ISPConfig admin credentials?\n<ul>\n<li>The admin username is &#8220;admin,&#8221; and the password is shown at the end of the installation.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<ul>\n<li>How can I debug installation issues?\n<ul>\n<li>Use the&nbsp;<code>--debug<\/code>&nbsp;argument for detailed logs.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<ul>\n<li>What ports are needed for ISPConfig?\n<ul>\n<li>You need ports like 20, 21, 80, 443, and more. Full details are in the firewall setup section.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>ISPConfig 3 simplifies web hosting management, offering a robust solution for various server needs. Following this updated guide ensures a smooth installation process, whether you opt for Apache or Nginx. With advanced customization options, you can fine-tune your setup to match your requirements.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Installing ISPConfig 3, a powerful open-source control panel, is now easier with the official auto-installer script. This guide offers an updated step-by-step approach based on the latest instructions, ensuring you master the process on Debian or Ubuntu servers. Whether you prefer Apache or Nginx, this guide also highlights advanced options to tailor your setup. System ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/\" 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>How to install and configure ISPConfig 3 - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Guide to install and configure ISPConfig 3 on Debian and Ubuntu, with official script commands and customization options.\" \/>\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\/how-to-install-and-configure-ispconfig-3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install and configure ISPConfig 3 - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Guide to install and configure ISPConfig 3 on Debian and Ubuntu, with official script commands and customization options.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/\" \/>\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-12-31T08:39:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-31T08:40:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/ispconfig_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\/how-to-install-and-configure-ispconfig-3\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to install and configure ISPConfig 3\",\"datePublished\":\"2024-12-31T08:39:28+00:00\",\"dateModified\":\"2024-12-31T08:40:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/\"},\"wordCount\":540,\"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\/how-to-install-and-configure-ispconfig-3\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/\",\"name\":\"How to install and configure ISPConfig 3 - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2024-12-31T08:39:28+00:00\",\"dateModified\":\"2024-12-31T08:40:17+00:00\",\"description\":\"Guide to install and configure ISPConfig 3 on Debian and Ubuntu, with official script commands and customization options.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install and configure ISPConfig 3\"}]},{\"@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=1783634435\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1783634435\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to install and configure ISPConfig 3 - WebHi Tutorials &amp; Documentations","description":"Guide to install and configure ISPConfig 3 on Debian and Ubuntu, with official script commands and customization options.","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\/how-to-install-and-configure-ispconfig-3\/","og_locale":"en_US","og_type":"article","og_title":"How to install and configure ISPConfig 3 - WebHi Tutorials &amp; Documentations","og_description":"Guide to install and configure ISPConfig 3 on Debian and Ubuntu, with official script commands and customization options.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2024-12-31T08:39:28+00:00","article_modified_time":"2024-12-31T08:40:17+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/12\/ispconfig_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\/how-to-install-and-configure-ispconfig-3\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to install and configure ISPConfig 3","datePublished":"2024-12-31T08:39:28+00:00","dateModified":"2024-12-31T08:40:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/"},"wordCount":540,"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\/how-to-install-and-configure-ispconfig-3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/","name":"How to install and configure ISPConfig 3 - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2024-12-31T08:39:28+00:00","dateModified":"2024-12-31T08:40:17+00:00","description":"Guide to install and configure ISPConfig 3 on Debian and Ubuntu, with official script commands and customization options.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-and-configure-ispconfig-3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to install and configure ISPConfig 3"}]},{"@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=1783634435","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1783634435","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\/10088"}],"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=10088"}],"version-history":[{"count":7,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/10088\/revisions"}],"predecessor-version":[{"id":10128,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/10088\/revisions\/10128"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=10088"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=10088"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=10088"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}