Overview
AKHQ sign in
The AKHQ sign in page, served on port 80 with a per instance administrator credential generated on first boot.
AKHQ sign in
Topics overview
Browse and tail messages
Consumer groups and lag
This is a repackaged open source software product wherein additional charges apply for cloudimg support services.
A Working Kafka Console in Minutes
AKHQ is the popular open source GUI for Apache Kafka, with an active open source contributor community. This AMI ships AKHQ 0.27.1 with a single node Apache Kafka 4.3.1 broker already installed, configured and seeded, so the console has a real cluster to manage the moment the instance boots. Browse topics and partitions, tail and search live messages, monitor consumer groups and lag, inspect broker and topic configuration, and manage ACLs from one web console.
Who This Is For
- Platform and streaming teams who need a shared web console over Kafka without hand rolling a deployment
- Developers debugging producers and consumers who want to read the actual bytes on a topic and see where a consumer group is stuck
- Operations teams watching consumer lag and broker health
- Evaluators who want a working Kafka environment to explore before committing to a managed cluster
Application Stack
- AKHQ 0.27.1 - Micronaut web console running on Eclipse Temurin 25 JRE
- Apache Kafka 4.3.1 - single node broker and controller in KRaft mode, no ZooKeeper
- nginx - reverse proxy on port 80, forwarding WebSocket and SSE for live message tailing
- AKHQ and the broker bind to loopback; nginx is the only external surface
Secure By Default
Upstream AKHQ ships with security disabled and anonymous full access. This image does not:
- Micronaut security is enabled; the default group is set to no-roles so nothing is served to unauthenticated visitors
- A single administrator account is defined with the password stored only as a SHA-256 hash
- Every instance generates its own administrator password and its own 256 bit JWT signing secret on first boot
- The plaintext password is written to a root only file, so no shared or default credential exists in the AMI
Ready To Explore On First Boot
First boot formats fresh KRaft storage and seeds demonstration topics with real JSON events, plus a consumer group with committed offsets and non zero lag. The topics, messages and consumer views show genuine data immediately. Delete the demonstration topics whenever you are ready to point AKHQ at your own workloads.
Getting Started
- Launch the AMI on an m5.large instance or larger
- SSH into the instance and read the generated administrator password from the root only credentials file
- Open your browser to the instance public address on port 80
- Sign in as administrator and open the cloudimg cluster
- Browse the seeded topics, tail live messages, and inspect the demonstration consumer group and its lag
For a detailed walkthrough, see the user guide linked in the Additional Resources section.
Recommended Instance Sizing
- Recommended: m5.large (2 vCPU, 8 GiB RAM) - comfortable for the two JVMs plus nginx
- Storage: OS disk plus two dedicated gp3 volumes, 30 GiB for Kafka data and 20 GiB for the application tier, each independently resizable
- Networking: open ports 80 and 443 in your security group for browser access; Kafka itself is loopback only
Use Case: Debugging A Stuck Consumer
An engineer is paged because orders are not being processed. They open AKHQ, find the orders topic, and see the consumer group lag climbing on one partition. They tail the live messages on that partition, spot a malformed payload, and confirm the committed offset has not advanced past it. Diagnosis takes minutes rather than an afternoon of command line tooling.
24/7 cloudimg Support
Every deployment is backed by cloudimg engineers available around the clock via email and live chat. Support covers:
- Initial deployment and instance sizing guidance
- Connecting AKHQ to an external or managed Kafka cluster in place of the bundled broker
- AKHQ authentication configuration, including LDAP and OIDC
- TLS termination with Let's Encrypt or your own certificates
- Apache Kafka broker configuration, retention and troubleshooting
- AKHQ and Kafka version upgrades
Critical issues receive a one hour average response time.
Evaluation
This AMI uses standard AWS pay as you go infrastructure billing. Launch an instance to evaluate AKHQ against the bundled broker or your own cluster, and terminate at any time with no long term commitment.
AKHQ and Apache Kafka are trademarks of their respective owners. All product and company names are trademarks or registered trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
Highlights
- Ready-to-use Kafka stack on first boot. AKHQ and Apache Kafka (KRaft mode, no ZooKeeper) are installed, configured and running behind nginx. The instance boots with seeded demonstration topics, JSON messages, and a consumer group showing real lag - giving you genuine data to explore immediately without any manual setup.
- Secure by default where upstream AKHQ is not. Every instance generates a unique administrator password and a unique 256 bit JWT signing secret on first boot - no shared or default credentials exist. Micronaut security is enabled with the default group set to no-roles, so unauthenticated visitors see nothing.
- 24/7 cloudimg support with one-hour average response for critical issues. Engineers assist via email and live chat with deployment sizing, connecting AKHQ to external or managed Kafka clusters, authentication setup (LDAP, OIDC), TLS termination, broker tuning, and version upgrades.
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
Free trial
- ...
Dimension | Description | Cost/hour |
|---|---|---|
m5.large Recommended | m5.large | $0.08 |
t2.micro | t2.micro instance type | $0.04 |
t3.micro | t3.micro instance type | $0.04 |
c6id.32xlarge | c6id.32xlarge instance type | $0.24 |
r6idn.xlarge | r6idn.xlarge instance type | $0.12 |
m5a.4xlarge | m5a.4xlarge instance type | $0.24 |
c8i.16xlarge | c8i.16xlarge instance type | $0.24 |
c5a.xlarge | c5a.xlarge instance type | $0.12 |
c7i.large | c7i.large instance type | $0.08 |
i7i.2xlarge | i7i.2xlarge instance type | $0.24 |
Vendor refund policy
Refunds available on request.
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
64-bit (x86) Amazon Machine Image (AMI)
Amazon Machine Image (AMI)
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Initial release of AKHQ 0.27.1 with a bundled single node Apache Kafka 4.3.1 broker.
Additional details
Usage instructions
Connect via SSH on port 22 as the default login user for your operating system variant (the user guide lists it per variant; on Ubuntu it is 'ubuntu'). AKHQ is served on port 80 through nginx (the application listens on 127.0.0.1:8080). Retrieve the generated administrator login with: sudo cat /root/akhq-credentials.txt. Browse to http://<instance-public-ip>/ and sign in as 'admin' with the password shown. Open the 'cloudimg' cluster to browse topics, tail live messages and inspect consumer groups. The bundled Apache Kafka broker listens on 127.0.0.1:9092 (loopback only) and is managed with the standard CLI tools under /opt/kafka/bin. Services are managed with systemctl (kafka, akhq, nginx). To point AKHQ at your own Kafka cluster, edit the connections block in /opt/akhq/application.yml and restart akhq. To enable HTTPS, follow the TLS section of the user guide.
Resources
Vendor resources
Support
Vendor support
cloudimg Support
cloudimg provides 24/7 technical support for this AKHQ AMI via email and live chat.
Contact: support@cloudimg.co.uk
Response Times:
- Critical issues (service down, data loss risk): one-hour average response
- General inquiries: responded to within business hours
Support Scope:
Our engineers assist with the full lifecycle of your AKHQ deployment:
- Initial deployment guidance and instance sizing recommendations
- Connecting AKHQ to an external, self managed or fully managed Kafka cluster in place of the bundled broker
- AKHQ authentication and authorisation configuration, including basic auth groups, LDAP and OIDC
- TLS termination setup with Let's Encrypt or custom certificates
- Apache Kafka broker configuration, topic retention, partitioning and troubleshooting
- Schema registry, Kafka Connect and ksqlDB integration from the AKHQ console
- AKHQ and Apache Kafka version upgrades
- nginx reverse proxy configuration and performance tuning
Getting Help:
Email support@cloudimg.co.uk or use live chat with a description of your issue. For deployment questions before purchase, reach out to the same address. Include your instance ID and AWS region to expedite troubleshooting.
Refunds:
If you experience issues with the product, contact support@cloudimg.co.uk . Our team will work to resolve your concern or assist with the refund process through AWS Marketplace.
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.