{"id":161429,"date":"2026-03-16T18:51:22","date_gmt":"2026-03-16T15:51:22","guid":{"rendered":"https:\/\/cloudspinx.com\/?p=74959"},"modified":"2026-03-16T18:51:22","modified_gmt":"2026-03-16T15:51:22","slug":"install-zammad-helpdesk-on-debian","status":"publish","type":"post","link":"https:\/\/computingforgeeks.com\/install-zammad-helpdesk-on-debian\/","title":{"rendered":"Install Zammad Helpdesk on Debian 12 \/ Debian 11"},"content":{"rendered":"\n<p>In this article we discuss the installation of Zammad Helpdesk on Debian 12 \/ Debian 11 Linux system. Zammad is a web based helpdesk and customer support system, released under GNU AGPLv3 open source license. With this tool it is easy and quicker to manage your customer communications via several channels such as twitter, telephone, chat, facebook, and e-mails.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Features of Zammad Helpdesk \/ Customer Support Tool<\/h4>\n\n\n\n<p>Here are some key features of Zammad Helpdesk system.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Groups<\/strong>: Form groups to create separation within your teams and departments<\/li>\n\n\n\n<li><strong>SSO<\/strong>: Zammad offers easy Single Sign-On with just one click thanks to the integration of architectures such as SAML or Shibboleth<\/li>\n\n\n\n<li><strong>LDAP integration<\/strong>: Zammad offers you centralized user\/rights management options using our secure LDAP integration<\/li>\n\n\n\n<li><strong>External Authentication<\/strong>: Support for sign in through third parties such as Twitter, Facebook, LinkedIn, or Google via OAuth.<\/li>\n\n\n\n<li><strong>Slack Integration<\/strong>: You can automatically receive a message in Slack when there is a new ticket<\/li>\n\n\n\n<li><strong>Time recording<\/strong>: Zammad enables agents to record the exact processing time per ticket<\/li>\n\n\n\n<li><strong>Exchange Integration<\/strong>: Support for Exchange synchronization to import Exchange address book contacts<\/li>\n\n\n\n<li><strong>i-doit Integration<\/strong>: The i-doit integration makes it possible to keep an eye on your data, processes, and systems<\/li>\n\n\n\n<li><strong>Knowledge Base<\/strong>: Zammad has an extensive knowledge base that makes sure everyone is always in the picture<\/li>\n\n\n\n<li><strong>Multilingualism<\/strong>: Zammad web app supports over 30 languages<\/li>\n\n\n\n<li><a class=\"rank-math-link\" href=\"https:\/\/zammad.com\/en\/product\/features\" target=\"_blank\" rel=\"noreferrer noopener\">Check all Zammad features<\/a><\/li>\n<\/ul>\n\n\n\n<p>Follow the steps in this guide to install Zammad Helpdesk and customer support system on Debian 12 and Debian 11 Linux operating system.<\/p>\n\n\n\n<p>The recommended server server requirements for this installation are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>2 CPU cores<\/strong><\/li>\n\n\n\n<li><strong>4 GB of RAM<\/strong>&nbsp;(+4 GB if you want to run Elasticsearch on the same server)<\/li>\n<\/ul>\n\n\n\n<p>For optimal performance, i.e up to 40 agents, below are the recommended hardware specifications.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>4 CPU cores<\/strong><\/li>\n\n\n\n<li><strong>6 GB of RAM&nbsp;<\/strong>(+6 GB if you want to run Elasticsearch on the same server)<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Step 1: Update Debian System<\/h4>\n\n\n\n<p>Before you begin the installation ensure your Debian system is up-to-date:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt -y full-upgrade<\/code><\/pre>\n\n\n\n<p>If you have kernel updates it is recommended to perform system restart:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl reboot<\/code><\/pre>\n\n\n\n<p>Install required dependencies:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install wget curl apt-transport-https gnupg2 libimlib2 libimlib2-dev -y<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Step 2: Install MariaDB and Apache Web Server<\/h4>\n\n\n\n<p>A database server and web server which will serve as proxy to Zammad is required. <\/p>\n\n\n\n<p>Set correct locale on the server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install locales\nsudo locale-gen en_US.UTF-8\necho \"LANG=en_US.UTF-8\" | sudo tee \/etc\/default\/locale<\/code><\/pre>\n\n\n\n<p>We&#8217;ll use MariaDB Database Server but you can also choose to use PostgreSQL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt -y install mariadb-server<\/code><\/pre>\n\n\n\n<p>Initiate database security with the command below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <span class=\"has-inline-color has-pale-pink-color\">sudo mysql_secure_installation<\/span>\n\nNOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB\n      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!\n\nIn order to log into MariaDB to secure it, we'll need the current\npassword for the root user. If you've just installed MariaDB, and\nhaven't set the root password yet, you should just press enter here.\n\nEnter current password for root (enter for none): \nOK, successfully used password, moving on...\n\nSetting the root password or using the unix_socket ensures that nobody\ncan log into the MariaDB root user without the proper authorisation.\n\nYou already have your root account protected, so you can safely answer 'n'.\n\nSwitch to unix_socket authentication &#91;Y\/n] n\n ... skipping.\n\nYou already have your root account protected, so you can safely answer 'n'.\n\nChange the root password? &#91;Y\/n] Y\nNew password: \nRe-enter new password: \nPassword updated successfully!\nReloading privilege tables..\n ... Success!\n\n\nBy default, a MariaDB installation has an anonymous user, allowing anyone\nto log into MariaDB without having to have a user account created for\nthem.  This is intended only for testing, and to make the installation\ngo a bit smoother.  You should remove them before moving into a\nproduction environment.\n\nRemove anonymous users? &#91;Y\/n] Y\n ... Success!\n\nNormally, root should only be allowed to connect from 'localhost'.  This\nensures that someone cannot guess at the root password from the network.\n\nDisallow root login remotely? &#91;Y\/n] Y\n ... Success!\n\nBy default, MariaDB comes with a database named 'test' that anyone can\naccess.  This is also intended only for testing, and should be removed\nbefore moving into a production environment.\n\nRemove test database and access to it? &#91;Y\/n] Y\n - Dropping test database...\n ... Success!\n - Removing privileges on test database...\n ... Success!\n\nReloading the privilege tables will ensure that all changes made so far\nwill take effect immediately.\n\nReload privilege tables now? &#91;Y\/n] Y\n ... Success!\n\nCleaning up...\n\nAll done!  If you've completed all of the above steps, your MariaDB\ninstallation should now be secure.\n\nThanks for using MariaDB!<\/code><\/pre>\n\n\n\n<p>Check and configure database server encoding if not set like below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <span class=\"has-inline-color has-pale-pink-color\">sudo vim \/etc\/mysql\/mariadb.conf.d\/50-server.cnf<\/span>\ncharacter-set-server  = utf8mb4\ncollation-server      = utf8mb4_general_ci<\/code><\/pre>\n\n\n\n<p>Restart <em>mariadb<\/em> database server after the configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart mariadb<\/code><\/pre>\n\n\n\n<p>Install Apache web server which will proxy requests to Zammad service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt -y install apache2<\/code><\/pre>\n\n\n\n<p>Enable Apache headers:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2enmod headers\nsudo systemctl stop apache2\nsudo systemctl start  apache2\nsudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>Check service status:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <span class=\"has-inline-color has-luminous-vivid-amber-color\">sudo systemctl status apache2.service<\/span>\n<span class=\"has-inline-color has-light-green-cyan-color\">\u25cf<\/span> apache2.service - The Apache HTTP Server\n     Loaded: loaded (\/lib\/systemd\/system\/apache2.service; enabled; preset: enabled)\n     Active: <span class=\"has-inline-color has-vivid-green-cyan-color\">active (running)<\/span> since Fri 2025-03-21 18:02:02 EAT; 2s ago\n       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/\n    Process: 5532 ExecStart=\/usr\/sbin\/apachectl start (code=exited, status=0\/SUCCESS)\n   Main PID: 5537 (apache2)\n      Tasks: 55 (limit: 7032)\n     Memory: 14.9M\n        CPU: 42ms\n     CGroup: \/system.slice\/apache2.service\n             \u251c\u25005537 \/usr\/sbin\/apache2 -k start\n             \u251c\u25005539 \/usr\/sbin\/apache2 -k start\n             \u2514\u25005540 \/usr\/sbin\/apache2 -k start\n\nMar 21 18:02:02 zammad.africanfine.com systemd&#91;1]: Starting apache2.service - The Apache HTTP Server...\nMar 21 18:02:02 zammad.africanfine.com systemd&#91;1]: Started apache2.service - The Apache HTTP Server.<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Step 3: Install ElasticSearch<\/h4>\n\n\n\n<p>Once the system is rebooted add Elasticsearch repository:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget -qO - https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch | sudo gpg --dearmor -o \/usr\/share\/keyrings\/elasticsearch-keyring.gpg\necho \"deb &#91;signed-by=\/usr\/share\/keyrings\/elasticsearch-keyring.gpg] https:\/\/artifacts.elastic.co\/packages\/8.x\/apt stable main\" | sudo tee \/etc\/apt\/sources.list.d\/elastic-8.x.list\nsudo apt update -y<\/code><\/pre>\n\n\n\n<p>Then install Elasticsearch:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update &amp;&amp; sudo apt-get install elasticsearch<\/code><\/pre>\n\n\n\n<p>When installing Elasticsearch, security features are enabled and configured by default. When you install Elasticsearch, the following security configuration occurs automatically:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Authentication and authorization are enabled, and a password is generated for the&nbsp;<code>elastic<\/code>&nbsp;built-in superuser.<\/li>\n\n\n\n<li>Certificates and keys for TLS are generated for the transport and HTTP layer, and TLS is enabled and configured with these keys and certificates.<\/li>\n<\/ul>\n\n\n\n<p>The password and certificate and keys are output to your terminal. You can reset the password for the&nbsp;<code>elastic<\/code>&nbsp;user with the&nbsp;<a href=\"https:\/\/www.elastic.co\/guide\/en\/elasticsearch\/reference\/current\/reset-password.html\" rel=\"noopener\" target=\"_blank\" rel=\"noreferrer noopener\"><code>elasticsearch-reset-password<\/code><\/a>&nbsp;command.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"455\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-1024x455.png\" alt=\"\" class=\"wp-image-75959\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-1024x455.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-300x133.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-768x341.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-1536x682.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-2048x910.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-946x420.png 946w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-696x309.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-01-1068x474.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>We recommend storing the&nbsp;<code>elastic<\/code>&nbsp;password as an environment variable in your shell. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export ELASTIC_PASSWORD=\"your_password\"<\/code><\/pre>\n\n\n\n<p>After you installed Elasticsearch and its attachment plugin:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo \/usr\/share\/elasticsearch\/bin\/elasticsearch-plugin install ingest-attachment<\/code><\/pre>\n\n\n\n<p>Ensure elasticsearch is enabled by default and start it.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable elasticsearch\nsudo systemctl start elasticsearch<\/code><\/pre>\n\n\n\n<p>Check that elasticsearch is running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">sudo systemctl status elasticsearch<\/mark>\n\u25cf elasticsearch.service - Elasticsearch\n     Loaded: loaded (\/lib\/systemd\/system\/elasticsearch.service; enabled; preset: enabled)\n     Active: active (running) since Fri 2025-03-21 18:29:08 EAT; 3min 40s ago\n       Docs: https:\/\/www.elastic.co\n   Main PID: 6161 (java)\n      Tasks: 92 (limit: 7032)\n     Memory: 3.4G\n        CPU: 42.000s\n     CGroup: \/system.slice\/elasticsearch.service\n             \u251c\u25006161 \/usr\/share\/elasticsearch\/jdk\/bin\/java -Xms4m -Xmx64m -XX:+UseSerialGC -Dcli.name=server -Dcli.script=\/usr\/share\/elasticsearch>\n             \u251c\u25006219 \/usr\/share\/elasticsearch\/jdk\/bin\/java -Des.networkaddress.cache.ttl=60 -Des.networkaddress.cache.negative.ttl=10 -XX:+AlwaysP>\n             \u2514\u25006241 \/usr\/share\/elasticsearch\/modules\/x-pack-ml\/platform\/linux-x86_64\/bin\/controller\n\nMar 21 18:28:51 zammad.africanfine.com systemd&#91;1]: Starting elasticsearch.service - Elasticsearch...\nMar 21 18:28:54 zammad.africanfine.com systemd-entrypoint&#91;6219]: CompileCommand: dontinline java\/lang\/invoke\/MethodHandle.setAsTypeCache bool don>\nMar 21 18:28:54 zammad.africanfine.com systemd-entrypoint&#91;6219]: CompileCommand: dontinline java\/lang\/invoke\/MethodHandle.asTypeUncached bool don>\nMar 21 18:29:08 zammad.africanfine.com systemd&#91;1]: Started elasticsearch.service - Elasticsearch.<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Step 4: Install Zammad on Debian 12 \/11<\/h4>\n\n\n\n<p>Install Repository Key:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -fsSL https:\/\/dl.packager.io\/srv\/zammad\/zammad\/key | \\\n   gpg --dearmor | sudo tee \/etc\/apt\/keyrings\/pkgr-zammad.gpg> \/dev\/null<\/code><\/pre>\n\n\n\n<p>Add repository to Debian:<\/p>\n\n\n\n<p><strong>Debian 11 (Bullseye):<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"deb &#91;signed-by=\/etc\/apt\/keyrings\/pkgr-zammad.gpg] https:\/\/dl.packager.io\/srv\/deb\/zammad\/zammad\/stable\/debian <strong>11<\/strong> main\"| \\\n   sudo tee \/etc\/apt\/sources.list.d\/zammad.list > \/dev\/nul<\/code><\/pre>\n\n\n\n<p><strong>Debian 12 (Bookworm):<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"deb &#91;signed-by=\/etc\/apt\/keyrings\/pkgr-zammad.gpg] https:\/\/dl.packager.io\/srv\/deb\/zammad\/zammad\/stable\/debian <strong>12<\/strong> main\"| \\\n   sudo tee \/etc\/apt\/sources.list.d\/zammad.list > \/dev\/null<\/code><\/pre>\n\n\n\n<p>With the repository added you can begin the installation of Zammad on Debian 12 \/ Debian 11 system:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update -y \nsudo apt install zammad<\/code><\/pre>\n\n\n\n<p>Accept any installation prompts you get on the screen.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Reading package lists... Done\nBuilding dependency tree... Done\nReading state information... Done\nThe following packages were automatically installed and are no longer required:\n  linux-image-6.1.0-25-amd64 linux-image-6.1.0-30-amd64\nUse 'sudo apt autoremove' to remove them.\nThe following additional packages will be installed:\n  liblzf1 libpq5 redis-server redis-tools\nSuggested packages:\n  ruby-redis\nThe following NEW packages will be installed:\n  liblzf1 libpq5 redis-server redis-tools zammad\n0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.\nNeed to get 181 MB of archives.\nAfter this operation, 625 MB of additional disk space will be used.\nDo you want to continue? &#91;Y\/n] <span class=\"has-inline-color has-vivid-purple-color\">y<\/span><\/code><\/pre>\n\n\n\n<p>A database named <em><strong>zammad<\/strong><\/em> is created by the installer.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Welcome to the MariaDB monitor.  Commands end with ; or \\g.\nYour MariaDB connection id is 69\nServer version: 10.11.11-MariaDB-0+deb12u1 Debian 12\n\nCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.\n\nType 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n\nMariaDB &#91;(none)]> <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-ast-global-color-7-color\">SHOW DATABASES;<\/mark>\n+--------------------+\n| Database           |\n+--------------------+\n| information_schema |\n| mysql              |\n| performance_schema |\n| sys                |\n| zammad             |\n+--------------------+\n5 rows in set (0.009 sec)\n\nMariaDB &#91;(none)]> <\/code><\/pre>\n\n\n\n<p>If you have&nbsp;<em>ufw&nbsp;<\/em>firewall open http and https ports:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 80,443\nsudo ufw reload<\/code><\/pre>\n\n\n\n<p>Start Zammad service and enable it to start at system boot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start zammad\nsudo systemctl enable zammad<\/code><\/pre>\n\n\n\n<p>Set the Elasticsearch server address:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo zammad run rails r \"Setting.set('es_url', 'https:\/\/localhost:9200')\"<\/code><\/pre>\n\n\n\n<p>Now you need your password which was shown to you while installing Elasticsearch.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em># Set Elasticsearch user and password<\/em>\nsudo zammad run rails r \"Setting.set('es_user', 'elastic')\"\nsudo zammad run rails r \"Setting.set('es_password', '&lt;password>')\"<\/code><\/pre>\n\n\n\n<p>Build\/rebuild the search index:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo zammad run rake zammad:searchindex:rebuild<\/code><\/pre>\n\n\n\n<p>First, disable the Apache default virtual host file with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2dissite 000-default.conf<\/code><\/pre>\n\n\n\n<p>Restart&nbsp;<em>apache2<\/em>&nbsp;web server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>Confirm service is started without an error:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <span class=\"has-inline-color has-pale-pink-color\">systemctl status apache2<\/span>\n\u25cf apache2.service - The Apache HTTP Server\n     Loaded: loaded (\/lib\/systemd\/system\/apache2.service; enabled; preset: enabled)\n     Active: active (running) since Fri 2025-03-21 19:21:23 EAT; 11s ago\n       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/\n    Process: 8684 ExecStart=\/usr\/sbin\/apachectl start (code=exited, status=0\/SUCCESS)\n   Main PID: 8689 (apache2)\n      Tasks: 55 (limit: 7032)\n     Memory: 9.3M\n        CPU: 33ms\n     CGroup: \/system.slice\/apache2.service\n             \u251c\u25008689 \/usr\/sbin\/apache2 -k start\n             \u251c\u25008690 \/usr\/sbin\/apache2 -k start\n             \u2514\u25008691 \/usr\/sbin\/apache2 -k start\n\nMar 21 19:21:23 zammad.africanfine.com systemd&#91;1]: Starting apache2.service - The Apache HTTP Server...\nMar 21 19:21:23 zammad.africanfine.com systemd&#91;1]: Started apache2.service - The Apache HTTP Server.<\/code><\/pre>\n\n\n\n<p>If you get an error \u201c<strong>apachectl[2095]: Invalid command \u2018RequestHeader\u2019, perhaps misspelled or defined by a module not included in the server configuration<\/strong>\u201c, ensure you&#8217;ve enabled Apache headers:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2enmod headers\nsudo systemctl stop apache2\nsudo systemctl start  apache2<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Step 4: Access Zammad Web Interface<\/h4>\n\n\n\n<p>Open your web browser and access Zammad web interface on the URL.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;your_server_ip_or_hostname<\/code><\/pre>\n\n\n\n<p>You should see the following screen. Select &#8220;<strong>Setup new system<\/strong>&#8221; to initiate configuration.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-1024x582.png\" alt=\"\" class=\"wp-image-75976\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-1024x582.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-300x171.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-768x437.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-1536x873.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-2048x1164.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-739x420.png 739w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-696x396.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-03-1068x607.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Create the first admin user account for Zammad.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-1024x582.png\" alt=\"\" class=\"wp-image-75977\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-1024x582.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-300x171.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-768x437.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-1536x873.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-2048x1164.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-739x420.png 739w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-696x396.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-04-1068x607.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Input organization name<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-1024x582.png\" alt=\"\" class=\"wp-image-75978\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-1024x582.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-300x171.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-768x437.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-1536x873.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-2048x1164.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-739x420.png 739w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-696x396.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-05-1068x607.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Setup Email comments channel &#8211; this is an optional configuration that can be done after the installation and you can skip it.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-1024x582.png\" alt=\"\" class=\"wp-image-75979\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-1024x582.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-300x171.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-768x437.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-1536x873.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-2048x1164.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-739x420.png 739w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-696x396.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-06-1068x607.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Configure notification email sending Local MTA or configure your own SMTP settings.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-1024x582.png\" alt=\"\" class=\"wp-image-75981\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-1024x582.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-300x171.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-768x437.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-1536x873.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-2048x1164.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-739x420.png 739w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-696x396.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-07-1068x607.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>If you did not skip the SMTP configuration, then setup the communiation channels you want to use with your Zammad. Otherwise, skip this step for later setup.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-1024x582.png\" alt=\"\" class=\"wp-image-75983\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-1024x582.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-300x171.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-768x437.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-1536x873.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-2048x1164.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-739x420.png 739w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-696x396.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-08-1068x607.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Connect an email account:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"582\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-1024x582.png\" alt=\"\" class=\"wp-image-75984\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-1024x582.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-300x171.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-768x437.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-1536x873.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-2048x1164.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-739x420.png 739w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-696x396.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-09-1068x607.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Complete installation of Zammad Helpdesk on Debian 12 \/ Debian 11 Linux system.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"581\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-1024x581.png\" alt=\"\" class=\"wp-image-75989\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-1024x581.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-300x170.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-768x436.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-1536x872.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-2048x1162.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-740x420.png 740w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-696x395.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-11-1068x606.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h5 class=\"wp-block-heading\">Add certificate to Zammad<\/h5>\n\n\n\n<p>Show and copy the auto-generated certificate from Elasticsearch and add it to Zammad. Make sure to copy\/paste the delimiters (e.g.&nbsp;<code>-----BEGIN&nbsp;CERTIFICATE-----<\/code>) too.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo cat \/etc\/elasticsearch\/certs\/http_ca.crt<\/code><\/pre>\n\n\n\n<p>Go to the admin panel of Zammad and add your copied certificate under&nbsp;<a href=\"https:\/\/admin-docs.zammad.org\/en\/latest\/settings\/security\/ssl-certificates.html\" rel=\"noopener\" target=\"_blank\" rel=\"noreferrer noopener\">SSL Certificates<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"581\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-1024x581.png\" alt=\"\" class=\"wp-image-75990\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-1024x581.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-300x170.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-768x436.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-1536x872.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-2048x1162.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-740x420.png 740w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-696x395.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-12-1068x606.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Click  <strong>Add SSL Certificate<\/strong>, then add what you just pasted from your terminal:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"581\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-1024x581.png\" alt=\"\" class=\"wp-image-75991\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-1024x581.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-300x170.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-768x436.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-1536x872.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-2048x1162.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-740x420.png 740w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-696x395.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-13-1068x606.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Then click <strong>Add<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"581\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-1024x581.png\" alt=\"\" class=\"wp-image-75992\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-1024x581.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-300x170.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-768x436.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-1536x872.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-2048x1162.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-740x420.png 740w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-696x395.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/03\/Install-Zammad-Helpdesk-on-Debian-Debian-14-1068x606.png 1068w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Reference:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a aria-label=\"Zammad documentation pages (opens in a new tab)\" class=\"rank-math-link\" href=\"https:\/\/docs.zammad.org\/en\/latest\/\" target=\"_blank\" rel=\"noreferrer noopener\">Zammad documentation pages<\/a><\/li>\n\n\n\n<li><a aria-label=\"Apache \/ Nginx configurations for Zammad (opens in a new tab)\" class=\"rank-math-link\" href=\"https:\/\/docs.zammad.org\/en\/latest\/getting-started\/configure-webserver.html\" target=\"_blank\" rel=\"noreferrer noopener\">Apache \/ Nginx configurations for Zammad<\/a><\/li>\n<\/ul>\n\n\n\n<p>More guides from our team:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/computingforgeeks.com\/install-mediawiki-ubuntu-debian\/\">How To Install MediaWiki on Ubuntu |Debian<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/install-centrifugo-messaging-server-on-ubuntu-debian\/\">Install Centrifugo Messaging Server on Ubuntu | Debian<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/how-to-install-suricata-on-debian\/\">How To Install Suricata on Debian (Bookworm)<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In this article we discuss the installation of Zammad Helpdesk on Debian 12 \/ Debian 11 Linux system. Zammad is a web based helpdesk and customer support system, released under GNU AGPLv3 open source license. With this tool it is easy and quicker to manage your customer communications via several channels such as twitter, telephone, &#8230; <a title=\"Install Zammad Helpdesk on Debian 12 \/ Debian 11\" class=\"read-more\" href=\"https:\/\/computingforgeeks.com\/install-zammad-helpdesk-on-debian\/\" aria-label=\"Read more about Install Zammad Helpdesk on Debian 12 \/ Debian 11\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":75994,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26,299,47,50],"tags":[39772],"class_list":["post-161429","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-how-to","category-linux","category-linux-tutorials","tag-zammad-helpdesk"],"_links":{"self":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/161429","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/comments?post=161429"}],"version-history":[{"count":0,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/161429\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media\/75994"}],"wp:attachment":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media?parent=161429"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/categories?post=161429"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/tags?post=161429"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}