Installing Zabbix on Ubuntu 14.04

来源:互联网 发布:网络优化工程师 知乎 编辑:程序博客网 时间:2024/05/17 23:39

https://thedutchlab.com/en/news/installing-zabbix-on-ubuntu-14-04


Edit apt source list to add the PPA:

sudo nano /etc/apt/sources.list

Add the following items at the end of the file:

# Zabbix Application PPAdeb http://ppa.launchpad.net/tbfr/zabbix/ubuntu precise maindeb-src http://ppa.launchpad.net/tbfr/zabbix/ubuntu precise main

Add the PPA's key so that apt-get trusts the source:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C407E17D5F76A32B

Update and install Zabbix server and required packages.

sudo apt-get updatesudo apt-get install zabbix-server-mysql php5-mysql zabbix-frontend-php

Next edit the Zabbix configuration.

sudo nano /etc/zabbix/zabbix_server.conf

Adjust the following values and make a note of the password you've chosen. You'll need it later too.

DBName=zabbixDBUser=zabbixDBPassword=your_chosen_password_here

Unzip the mysql data for importing them into the database you'll create in the next step.

cd /usr/share/zabbix-server-mysql/sudo gunzip *.gz

Login to MySql using the root password.

mysql -u root -p

Create a user for Zabbix (and a database) that matches the information we entered in the "/etc/zabbix/zabbix_server.conf" file.

create user 'zabbix'@'localhost' identified by 'your_chosen_password_here';create database zabbix;grant all privileges on zabbix.* to 'zabbix'@'localhost';flush privileges;exit;

Next we'll import the schemas into the newly created database.

mysql -u zabbix -p zabbix < schema.sqlmysql -u zabbix -p zabbix < images.sqlmysql -u zabbix -p zabbix < data.sql

Edit a few PHP settings by modifying the php.ini file.

sudo nano /etc/php5/apache2/php.ini

Search and adjust the following data. (Or add them if they can't be found.)

post_max_size = 16M
max_execution_time = 300
max_input_time = 300
date.timezone = "Europe/Amsterdam"

Next copy the example config to the /etc/zabbix directory. Then make the necessary adjustments too.

sudo cp /usr/share/doc/zabbix-frontend-php/examples/zabbix.conf.php.example /etc/zabbix/zabbix.conf.phpsudo nano /etc/zabbix/zabbix.conf.php

$DB['DATABASE'] = 'zabbix';
$DB['USER'] = 'zabbix';
$DB['PASSWORD'] = 'your_chosen_password_here'

Then copy the example apache config to the /etc/apache2/conf-available/ directory to make Zabbix and Apache work together.

sudo cp /usr/share/doc/zabbix-frontend-php/examples/apache.conf /etc/apache2/conf-available/zabbix.confsudo a2enconf zabbix.confsudo a2enmod aliassudo service apache2 restart
sudo nano /etc/default/zabbix-server

Go to the bottom and adjust the "START" property to read "yes":
START=yes

And start the Zabbix server.

sudo service zabbix-server start

Installing Zabbix agent(s) on server machines.

sudo apt-get updatesudo apt-get install zabbix-agentsudo nano /etc/zabbix/zabbix_agentd.conf

Look for: Server=localhost
and change 'localhost' with the IP address of your Zabbix install.

Save and close the file and restart the agent software:

sudo service zabbix-agent restart

In your web browser, navigate to your Zabbix server's IP address followed by "/zabbix":
http://xx.xx.xx.xx/zabbix

Use the following default credentials to login.
Username = admin
Password = zabbix

When you have logged in, click on the "Configuration" button, and then "Hosts" in the top navigation bar.

Click on the name of the server (by default, this should be "Zabbix server"). This will open the host configuration page.
Adjust the Hostname to reflect the hostname of your Zabbix server (this should be the same hostname you entered in the agent configuration for the server machine).
At the bottom, change the "Status" property to "Monitored". Click save.

You will be dopped back to the Hosts configuration page. Re-click on the hostname again.
This time, click on the "Clone" button at the bottom of the page.
We will configure this to reflect the settings of the client machine. Change the hostname and the IP address to reflect the correct information from the client agent file.

In the "groups" section, select "Zabbix servers" and click the right arrow icon to remove that group. Select the "Linux servers" and click the left arrow icon to add that group setting.

Click "Save" at the bottom.
After a few minutes, you should be able to see both computers by going to "Monitoring" and then clicking on "Latest data".
There should be information for both the server and client machines populating.

If you click on the arrows next to an item, you can see the collected information.
If you click "Graph" you will see a graphical representation of the data points that have been collected:


0 0
原创粉丝点击