Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Zabbix Performance Tuning

You're reading from   Zabbix Performance Tuning Tune and optimize Zabbix to maximize performance

Arrow left icon
Product type Paperback
Published in Jun 2015
Publisher
ISBN-13 9781783987641
Length 152 pages
Edition 1st Edition
Tools
Arrow right icon
Toc

Table of Contents (13) Chapters Close

Preface 1. Evolution of Zabbix 2. Zabbix and I – Almost Heroes FREE CHAPTER 3. Tuning the Zabbix Server 4. Tuning the MySQL Database 5. Tuning the Frontend 6. Adjusting the Storage 7. Tuning the Operating System 8. Doing the Extra Work 9. Using the Zabbix Proxy 10. Monitoring the Health of Zabbix 11. The Next Challenge Index

The main configuration parameters


Here, we will try to talk about the main configuration parameters for frontend performance used by Zabbix. When considering basic items to ensure acceptable performance from the implementation of Zabbix, we basically have to activate the compression modules (mod_compress, mod_gzip, mod_deflate, and so on) in those web servers in this chapter.

Compression in Apache

For Apache, it is important to ensure that we are with the active compression module. Therefore, we must verify that mod_deflate and/or mod_gzip are installed and configured.

In httpd.conf (the location will vary according to your operational system), perform these steps:

  • Check whether the module is active:

    [root]# grep deflate_module /etc/httpd/conf/httpd.conf
    LoadModule deflate_module modules/mod_deflate.so
  • Add it to Zabbix's virtual host:

    <IfModule mod_deflate.c>
      AddOutputFilterByType DEFLATE text/plain
      AddOutputFilterByType DEFLATE text/css
      AddOutputFilterByType DEFLATE application/x-javascript...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image