Why Self-Host Your ITSM Platform?
IT Service Management (ITSM) platforms are the backbone of IT operations — they handle incident tracking, change management, asset inventory, and service catalogs. While commercial SaaS options like ServiceNow, Jira Service Management, and Freshservice dominate the market, self-hosted open-source alternatives give organizations full control over their data, unlimited users without per-seat pricing, and the ability to customize every workflow.
For teams in regulated industries (healthcare, finance, government), self-hosting ITSM tools keeps sensitive incident data, asset inventories, and change records on-premises. For budget-conscious organizations, open-source ITSM eliminates the steep per-agent licensing costs that can reach $100+/agent/month with commercial platforms.
This guide compares three mature, actively maintained open-source ITSM platforms: Request Tracker (the industry veteran), Znuny (the community-driven OTRS fork), and iTop (the CMDB-centric ITSM tool). All three offer web-based interfaces, email integration, and extensible architectures — but they differ significantly in philosophy, technology stack, and use-case fit.
Quick Comparison
| Feature | Request Tracker 6.0 | Znuny 7.3 | iTop 3.2 |
|---|---|---|---|
| Language | Perl | Perl | PHP |
| Database | MySQL, PostgreSQL, Oracle | MySQL, PostgreSQL | MySQL, MariaDB |
| License | GPL v2 | GPL v2 | AGPL v3 |
| Latest Release | 6.0.2 (Oct 2025) | 7.3.2 (2025) | 3.2.3 (Apr 2026) |
| GitHub Stars | 1,112 | 556 | 1,107 |
| CMDB | Limited (via extensions) | Limited (via extensions) | Built-in (core feature) |
| ITIL Processes | Incident, Problem, Change | Incident, Problem, Change, SLA | Incident, Problem, Change, Config, SLA |
| REST API | Yes | Yes | Yes |
| Email Integration | IMAP/POP3/SMTP (built-in) | IMAP/POP3/SMTP (built-in) | IMAP/POP3/SMTP (built-in) |
| Docker Support | Community images | Community images | Community images |
| Multi-Tenancy | Yes (via RTIR) | Yes (via OTRS::ITSM) | Yes (built-in) |
| SLA Management | Via extensions | Built-in | Built-in |
| Knowledge Base | Via extensions | Built-in | Built-in |
| Portal/End-User UI | Basic | Advanced | Advanced |
Request Tracker (RT)
Request Tracker is the oldest and most established open-source ticketing system, developed by Best Practical Solutions since 2001. It is widely used by universities, government agencies, and enterprises worldwide.
Key Strengths
- Mature and stable: 25+ years of development, deployed in thousands of organizations
- Powerful queue management: Custom queues with unique workflows, permissions, and templates
- Scrips system: Event-driven automation (triggers + actions + conditions) for complex workflows
- Custom fields: Extensible ticket metadata with field-level permissions
- Strong email integration: Bidirectional email-ticket correlation with full MIME support
- RTIR extension: Incident Response module for security team workflows
Architecture
RT runs as a Perl application behind a web server (Apache or nginx) using FastCGI. It requires a relational database backend and integrates with LDAP/Active Directory for authentication.
Docker Deployment
Here is a Docker Compose configuration for running Request Tracker with a MySQL backend:
| |
For production deployments, add a reverse proxy (nginx or Traefik) with TLS termination and configure persistent storage for RT’s attachments and templates. The bpssysadmin/rt image is a community-maintained build; many organizations build custom images based on Debian packages for tighter control.
Installation on Ubuntu/Debian
| |
Znuny
Znuny is a community-driven fork of OTRS (Open-source Ticket Request System), created after OTRS AG shifted to a commercial-only model in 2021. Znuny maintains API compatibility with OTRS 6, meaning existing OTRS extensions and workflows can be migrated with minimal changes.
Key Strengths
- OTRS heritage: Inherits 20+ years of OTRS development and enterprise features
- ITSM extension suite: Built-in modules for Change Management, Problem Management, and SLA tracking
- Process automation: Generic Agent for scheduled actions, Process and Dynamic Fields for custom workflows
- Strong knowledge base: Integrated FAQ and solution database
- Customer portal: End-user self-service portal with ticket submission and tracking
- Active community: Regular releases with a clear open-source governance model
Architecture
Like RT, Znuny is a Perl-based web application. It runs behind Apache or nginx with FastCGI and uses MySQL or PostgreSQL as the database backend. The architecture is nearly identical to OTRS 6, making migration straightforward.
Docker Deployment
Community-maintained Docker images (such as juanluisbaptiste/znuny) make Znuny deployable via Docker Compose:
| |
The Znuny container exposes its web interface on port 80. Configure your reverse proxy to handle TLS and route traffic to the container. Persistent volumes for /opt/otrs/Kernel and /opt/otrs/var ensure configuration and uploaded files survive container restarts.
Installation on Ubuntu/Debian
| |
iTop (Combodo)
iTop (IT Operational Portal) takes a different approach: it is built around a Configuration Management Database (CMDB) first, with ITSM processes layered on top. Developed by Combodo, iTop is designed for organizations that need strong asset tracking and service dependency mapping alongside their ticketing.
Key Strengths
- CMDB at the core: Full configuration item (CI) management with relationships and impact analysis
- ITIL-aligned: Incident, Problem, Change, and Service Request management out of the box
- Service catalog: End-user portal with categorized service offerings
- Impact analysis: Automatic dependency mapping — when a server goes down, iTop shows which services and users are affected
- Data model extensibility: Add custom CI types, attributes, and relationships through the UI
- Portal customization: Separate agent and end-user portals with configurable dashboards
Architecture
iTop is a PHP application that runs on a LAMP stack (Linux, Apache, MySQL/MariaDB, PHP). It uses a custom ORM and data model engine that allows the entire schema to be extended without modifying core code.
Docker Deployment
Community images like viktorkbene/itop or openwaygroup/itop provide Docker-based deployment:
| |
Installation on Ubuntu/Debian
| |
Which One Should You Choose?
Choose Request Tracker if:
- You need a battle-tested, enterprise-grade ticketing system with 25+ years of development
- Your team is comfortable with Perl and FastCGI administration
- You need advanced queue management and the Scrips automation system
- You are in an academic or government environment (RT is widely adopted in these sectors)
Choose Znuny if:
- You have an existing OTRS installation and need an open-source migration path
- You want built-in ITSM modules (Change, Problem, SLA) without piecing together extensions
- You need a customer-facing portal with self-service capabilities
- Your team values active community governance and regular open-source releases
Choose iTop if:
- CMDB and asset management are your primary requirements, not just ticketing
- You need service dependency mapping and impact analysis
- You prefer a PHP stack over Perl
- Your organization follows ITIL and wants process alignment out of the box
For related reading, see our self-hosted helpdesk comparison for lighter-weight ticketing alternatives, Snipe-IT vs Inventree vs PartKeepr for IT asset management, and GLPI mobile device management for endpoint management.
FAQ
What is the difference between ITSM and a helpdesk?
A helpdesk focuses on incident management — receiving, tracking, and resolving user requests. ITSM (IT Service Management) is broader, encompassing incident management, problem management, change management, configuration management (CMDB), service catalogs, and SLA tracking. Tools like Request Tracker and Znuny started as helpdesks and expanded into ITSM. iTop was designed as an ITSM platform from the ground up, with CMDB at its core.
Can these tools integrate with Active Directory or LDAP?
Yes. All three platforms support LDAP/Active Directory authentication. Request Tracker uses the RT::Authen::ExternalAuth extension. Znuny has built-in LDAP authentication modules configurable through its admin interface. iTop includes LDAP synchronization as part of its user management, allowing automatic user provisioning and group mapping.
Is it possible to migrate from OTRS to Znuny?
Yes. Znuny is designed as a drop-in replacement for OTRS 6. You can migrate your database directly — Znuny uses the same schema and data model. The migration process involves backing up your OTRS database, installing Znuny, pointing it at the existing database, and running the migration scripts. Extensions may need to be replaced with Znuny-compatible versions.
Do these platforms support REST APIs for integration?
All three provide REST APIs. Request Tracker offers a REST API for ticket CRUD operations, user management, and queue configuration. Znuny provides a comprehensive REST API (compatible with the OTRS Generic Interface) for tickets, customers, and ITSM objects. iTop includes a REST/JSON API for all data model objects, making it easy to integrate with monitoring tools, CMDB synchronizers, and custom applications.
Which platform has the best email integration?
Request Tracker has the most sophisticated email integration of the three, with bidirectional email-ticket correlation, MIME attachment handling, and configurable email-based workflows. Znuny offers comparable email integration with its PostMaster and Sendmail modules. iTop handles email integration but requires additional configuration for full bidirectional support. For organizations where email is the primary ticket intake channel, RT has the edge.
Are there mobile apps available for these ITSM platforms?
None of the three platforms offer official mobile apps. However, all three have responsive web interfaces that work on mobile browsers. Third-party mobile apps exist for Request Tracker (e.g., RT Mobile) and iTop in various app stores. Znuny’s responsive portal provides a mobile-friendly end-user experience out of the box.
How do these tools handle multi-tenant environments?
Request Tracker supports multi-tenancy through its RTIR (Incident Response) extension and queue-based isolation. Znuny offers multi-tenant capabilities through its customer company management and ticket isolation features. iTop has built-in multi-tenancy support with organization-based data segregation, making it the strongest choice for managed service providers (MSPs) managing multiple client environments from a single instance.