{"id":2468,"date":"2026-02-15T12:30:00","date_gmt":"2026-02-15T18:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2468"},"modified":"2025-12-26T05:51:22","modified_gmt":"2025-12-26T11:51:22","slug":"how-to-install-suitecrm-on-debian-13","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/","title":{"rendered":"How to Install SuiteCRM on Debian 13"},"content":{"rendered":"\n<div id=\"linux-2359862813\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial, we will explain step-by-step how to install SuiteCRM on Debian 13. SuiteCRM is an open-source CRM (Customer Relationship Management) platform written in PHP. The key features and functions of SuiteCRM include sales automation, marketing automation, customer service, data management, and customization. In this blog post, we will also install the LAMP stack, which is required for SuiteCRM to work.<\/p>\n\n\n\n<p>Installing SuiteCRM on Debian 13 with the LAMP stack is a straightforward process that may take up to 15 minutes. Let&#8217;s get things done!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">server running Debian 13<\/a> OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n\n\n\n<li>A valid domain with a pointed A record to the server IP address<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the System<\/h2>\n\n\n\n<p>Before we start installing the LAMP stack and SuiteCRM, we assume you have a freshly installed OS, so that we will update the system packages to their latest versions. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install the LAMP stack<\/h2>\n\n\n\n<p>LAMP stack stands for Linux, Apache, MySQL, and PHP. SuiteCRM software cannot work without this stack, because without it we cannot create a database, install SuiteCRM, or configure the domain name. First, we will install the Apache web server. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install apache2 -y<\/pre>\n\n\n\n<p>Once installed, start and enable the Apache service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start apache2 &amp;&amp; sudo systemctl enable apache2<\/pre>\n\n\n\n<p>Check the status of the service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status apache2<\/pre>\n\n\n\n<p>You should get the following output:&lt;\/p<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status apache2<br>\u25cf apache2.service - The Apache HTTP Server<br>     Loaded: loaded (\/usr\/lib\/systemd\/system\/apache2.service; enabled; preset: enabled)<br>     Active: active (running) since Wed 2025-12-10 19:48:37 CST; 24s ago<br> Invocation: 59b4435ce5774ca594893f546af0e77a<br>       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/<br>   Main PID: 9360 (apache2)<br>      Tasks: 55 (limit: 4640)<br>     Memory: 5.2M (peak: 5.6M)<br>        CPU: 113ms<br>     CGroup: \/system.slice\/apache2.service<\/pre>\n\n\n\n<p>Next in the LAMP stack is PHP, with its extensions. To install it, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install php libapache2-mod-php php-mysql php-cgi php-mysqli php-pear php-phpseclib php-mbstring php-zip php-gd php-curl php-common php-intl php-soap php-ldap php-imap php-pear php-dev -y<\/pre>\n\n\n\n<p>Once installed, execute the following command to check the PHP version:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">php -v<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# php -v<br>PHP 8.4.11 (cli) (built: Aug  3 2025 07:32:21) (NTS)<br>Copyright (c) The PHP Group<br>Built by Debian<br>Zend Engine v4.4.11, Copyright (c) Zend Technologies<br>    with Zend OPcache v8.4.11, Copyright (c), by Zend Technologies<\/pre>\n\n\n\n<p>The last component of the LAMP stack will be the MariaDB database service. To install it, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install mariadb-server -y<\/pre>\n\n\n\n<p>Once installed, start and enable the MariaDB service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start mariadb &amp;&amp; sudo systemctl enable mariadb<\/pre>\n\n\n\n<p>Check the status of the service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status mariadb<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status mariadb<br>\u25cf mariadb.service - MariaDB 11.8.3 database server<br>     Loaded: loaded (\/usr\/lib\/systemd\/system\/mariadb.service; enabled; preset: enabled)<br>     Active: active (running) since Wed 2025-12-10 19:59:18 CST; 15s ago<br> Invocation: 084116f7a45a4ddfabbfea838072df7f<br>       Docs: man:mariadbd(8)<br>             https:\/\/mariadb.com\/kb\/en\/library\/systemd\/<br>   Main PID: 24128 (mariadbd)<br>     Status: \"Taking your SQL requests now...\"<br>      Tasks: 13 (limit: 30624)<br>     Memory: 125M (peak: 129.7M)<br>        CPU: 7.485s<br>     CGroup: \/system.slice\/mariadb.service<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Create SuiteCRM Database and User<\/h2>\n\n\n\n<p>To create the SuiteCRM database, database user, and assign the privileges, log in to the MariaDB terminal and execute the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CREATE USER 'suitecrmuser'@'localhost' IDENTIFIED BY 'StrongPasswordHere';<br><br>CREATE DATABASE suitecrDB;<br><br>GRANT ALL PRIVILEGES ON suitecrDB.* TO 'suitecrmuser'@'localhost';<br><br>FLUSH PRIVILEGES;<br><br>EXIT;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Download and Install SuiteCRM<\/h2>\n\n\n\n<p>Download the SuiteCRM into the Apache document root:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mkdir \/var\/www\/html\/suitecrm<br><br>cd \/var\/www\/html\/suitecrm<br><br>https:\/\/suitecrm.com\/download\/166\/suite89\/565627\/suitecrm-8-9-1.zip<br><br>unzip \/var\/www\/html\/suitecrm\/suitecrm-8-9-1.zip -d \/var\/www\/html\/suitecrm<br><br>rm suitecrm-8-9-1.zip<\/pre>\n\n\n\n<p>Next is to set the correct permissions:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chown -R www-data:www-data \/var\/www\/html\/suitecrm\/<br><br>find . -type f -exec chmod 644 {} \\;<br><br>find . -type d -exec chmod 755 {} \\;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Create Apache Virtual Host File<\/h2>\n\n\n\n<p>The Apache Configuration file for our SuiteCRM installation is required to access it via a domain name. To create the file, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo touch \/etc\/apache2\/sites-available\/suitecrm.conf<\/pre>\n\n\n\n<p>Open the file and paste the following lines of code<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80><br>ServerName yourdomainhere.com<br>DocumentRoot \/var\/www\/html\/suitecrm\/public<br><br>&lt;Directory \/var\/www\/html\/suitecrm><br>AllowOverride All<br>&lt;\/Directory><br><br>ErrorLog ${APACHE_LOG_DIR}\/error.log<br>CustomLog ${APACHE_LOG_DIR}\/access.log combined<br><br>&lt;\/VirtualHost><\/pre>\n\n\n\n<p>Save the file and close it.<\/p>\n\n\n\n<p>Enable the Apache configuration files for SuiteCRM along with the rewrite module.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo a2enmod rewrite<br><br>sudo a2ensite suitecrm.conf<br><br>sudo a2dissite 000-default.conf<\/pre>\n\n\n\n<p>Check the Apache2 syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apachectl -t<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/var\/www\/html\/suitecrm# apachectl -t<br>Syntax OK<\/pre>\n\n\n\n<p>If the syntax is OK, restart the Apache service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n\n\n\n<p>That&#8217;s it. Now you can access the SuiteCRM at <strong>http:\/\/yourdomainhere.com<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Finish the SuiteCRM Installation<\/h2>\n\n\n\n<p>Once you access the domain in the browser, you will see a screen that performs a pre-install prerequisites check. If there are no errors, we are good to go, and ignore all warnings.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"211\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm1-1024x211.jpg\" alt=\"Install SuiteCRM on Debian 13\" class=\"wp-image-2471\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm1-1024x211.jpg 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm1-300x62.jpg 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm1-150x31.jpg 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm1-768x159.jpg 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm1-1536x317.jpg 1536w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm1.jpg 1846w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>On the second screen, we need to enter the database credentials we set before in step 3 and also create an administrator username and password:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"342\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm2-1024x342.png\" alt=\"Welcome to SuiteCRM\" class=\"wp-image-2472\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm2-1024x342.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm2-300x100.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm2-150x50.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm2-768x257.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm2-1536x513.png 1536w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm2.png 1846w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>Enter the administrator credentials you set above, and click on the &#8220;Log In&#8221; button. You should see the following screen:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"711\" height=\"378\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm3.png\" alt=\"SuiteCRM login\" class=\"wp-image-2473\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm3.png 711w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm3-300x159.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm3-150x80.png 150w\" sizes=\"(max-width: 711px) 100vw, 711px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>You should get the following welcome SuiteCRM screen:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"242\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm4-1024x242.png\" alt=\"SuiteCRM Dashboard\" class=\"wp-image-2474\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm4-1024x242.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm4-300x71.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm4-150x35.png 150w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm4-768x181.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm4-1536x362.png 1536w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/12\/crm4.png 1818w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>That&#8217;s it. You successfully installed SuiteCRM on Debian 13.<\/p>\n\n\n\n<p>If you have any difficulties with this installation, our Linux admins can help with any aspect. You need to sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">monthly server management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\">per-incident server support<\/a> plans. Do not hesitate to contact us anytime you want. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post on how to install SuiteCRM on Debian 13, please share it with your friends or leave a comment below.<\/p><div id=\"linux-395866822\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will explain step-by-step how to install SuiteCRM on Debian 13. SuiteCRM is an open-source CRM (Customer Relationship Management) platform written in PHP. The key features and functions of SuiteCRM include sales automation, marketing automation, customer service, data management, and customization. In this blog post, we will also install the LAMP stack, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2490,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[201],"tags":[318,199,333],"class_list":["post-2468","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian-13","tag-how-to-install","tag-suitecrm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install SuiteCRM on Debian 13 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to install SuiteCRM on Debian 13 using our latest step-by-step guide or simply ask our Linux admins to install it for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install SuiteCRM on Debian 13 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to install SuiteCRM on Debian 13 using our latest step-by-step guide or simply ask our Linux admins to install it for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-15T18:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-suitecrm-on-debian-13.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install SuiteCRM on Debian 13\",\"datePublished\":\"2026-02-15T18:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/\"},\"wordCount\":611,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/how-to-install-suitecrm-on-debian-13.webp\",\"keywords\":[\"debian 13\",\"how to install\",\"suitecrm\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/\",\"name\":\"How to Install SuiteCRM on Debian 13 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/how-to-install-suitecrm-on-debian-13.webp\",\"datePublished\":\"2026-02-15T18:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to install SuiteCRM on Debian 13 using our latest step-by-step guide or simply ask our Linux admins to install it for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/how-to-install-suitecrm-on-debian-13.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/how-to-install-suitecrm-on-debian-13.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Install SuiteCRM on Debian 13\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-suitecrm-on-debian-13\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install SuiteCRM on Debian 13\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install SuiteCRM on Debian 13 | LinuxHostSupport","description":"Learn how to install SuiteCRM on Debian 13 using our latest step-by-step guide or simply ask our Linux admins to install it for you.","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:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SuiteCRM on Debian 13 | LinuxHostSupport","og_description":"Learn how to install SuiteCRM on Debian 13 using our latest step-by-step guide or simply ask our Linux admins to install it for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2026-02-15T18:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-suitecrm-on-debian-13.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install SuiteCRM on Debian 13","datePublished":"2026-02-15T18:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/"},"wordCount":611,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-suitecrm-on-debian-13.webp","keywords":["debian 13","how to install","suitecrm"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/","name":"How to Install SuiteCRM on Debian 13 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-suitecrm-on-debian-13.webp","datePublished":"2026-02-15T18:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to install SuiteCRM on Debian 13 using our latest step-by-step guide or simply ask our Linux admins to install it for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-suitecrm-on-debian-13.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2026\/02\/how-to-install-suitecrm-on-debian-13.webp","width":742,"height":410,"caption":"How to Install SuiteCRM on Debian 13"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-suitecrm-on-debian-13\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install SuiteCRM on Debian 13"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2468","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2468"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2468\/revisions"}],"predecessor-version":[{"id":2476,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2468\/revisions\/2476"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2490"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2468"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2468"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}