Zabbix 1.4.4 From Source On Debian Etch
Zabbix 1.4.4 From Source On Debian EtchOriginally posted on Zabbix 1.4.4 from source on Debian Etch. This guide will walk you through installing Zabbix 1.4.4 from source on Debian Etch. 1.4.4 has many improvements over what is currently available in apt, and it's not hard so you might as well do it this way. *Note: this walkthrough assumes that you will be running the zabbix database on the same machine as the frontend. You dont have to obviously, just do the mysql setup on whatever db server you are using and point the necessary things to it. Required Packages: build-essential libmysqlclient-dev libssl-dev libsnmp-dev apache2 libapache2-mod-php5 php5-gd php5-mysql mysql-server aptitude -y install build-essential libmysqlclient-dev libssl-dev libsnmp-dev apache2 libapache2-mod-php5 php5-gd php5-mysql mysql-server Zabbix needs to have its own user and group so let's create them (you need to do this as root). groupadd zabbix Let's set up the MySQL database for zabbix. mysql -p -u root Where PASSWORD is the password you want zabbix to connect to the database with. Let's go ahead and grab the zabbix source. su - zabbix Now let's build the source and install zabbix_server and zabbix_agentd. ./configure --prefix=/usr --with-mysql --with-net-snmp --enable-server --enable-agent We need to add the zabbix ports to /etc/services, and create some config files for zabbix. echo " ensure Server=127.0.0.1 vim /etc/zabbix/zabbix_server.conf max_execution_time = 300 date.timezone = UTC ensure DBHost=localhost or your db host ensure DBName=zabbix ensure DBUser=zabbix ensure DBPassword=ZABBIX_PASSWORD where ZABBIX_PASSWORD is the password you set when creating db. The zabbix package has init scripts for Debian and they only need minor modification to get them working so let's use them. cp /home/zabbix/zabbix-1.4.4/misc/init.d/debian/* /etc/init.d/ Now modify both of those scripts changing DAEMON=/home/zabbix/bin/${NAME}
to DAEMON=/usr/sbin/${NAME}
Great; now we just need to get the database schema loaded, and then we need to set up the frontend. Let's load the database schema first. mysql -u root -p zabbix < /home/zabbix/zabbix-1.4.4/create/schema/mysql.sql Great; now it's just the frontend left. I like to put all of my webaps down in /var/www. mkdir -p /var/www/zabbix Create /etc/apache2/sites-available/zabbix with the following content: <virtualhost> ServerName zabbix.fqdn.tld DocumentRoot /var/www/zabbix <directory> Options FollowSymLinks AllowOverride None </directory> </virtualhost> I disable the default site, and enable the zabbix site with a2ensite: a2ensite zabbix Just a few minor edits in /etc/php5/apache2/php.ini: max_execution_time = 300 date.timezone = UTC Restart apache, zabbix-server, and zabbix-agent and you should be ready to rock and roll. You will need to browse to your zabbix frontend and complete the web-driven install which should be easy enough. /etc/init.d/apache2 restart * adapted and updated from http://www.howtoforge.com/zabbix_network_monitoring Thanks to petey5000 for catching several typos.
|
Join the discussion.
www.seamlessenterprise.com
IP Convergence
Integrate your wireless and wireline networks.
Learn how from the experts at Sprint.
www.seamlessenterprise.com
Wireless & Wireline Integration
Thoughts, strategies and solutions: join the discussion
www.seamlessenterprise.com
Unified Communications 2009
Join the Discussion. Now.
www.seamlessenterprise.com







Recent comments
16 hours 37 min ago
18 hours 6 min ago
21 hours 40 min ago
1 day 34 min ago
1 day 3 hours ago
1 day 4 hours ago
1 day 4 hours ago
1 day 5 hours ago
1 day 6 hours ago
1 day 7 hours ago