linhnhd
VIP Members
-
30/12/2014
-
14
-
32 bài viết
Hướng dẫn cấu hình zabbix
Hướng dẫn cấu hình zabbix
Zabbix là một giải pháp giám sát mạng phân tán, mã nguồn mở, mạnh mẽ, có nhiều tính năng độc đáo và khả năng tùy biến cao.
Thêm các dòng sau
# Zabbix Application PPA
deb http://ppa.launchpad.net/tbfr/zabbix/ubuntu precise main
deb-src http://ppa.launchpad.net/tbfr/zabbix/ubuntu precise main
hostname -F /etc/hostname
sudo apt-get install zabbix-server-mysql php5-mysql zabbix-frontend-php
nano /etc/zabbix/zabbix_server.conf
create user 'zabbix'@'localhost' identified by 'your_chosen_password_here';
create database zabbix;
grant all privileges on zabbix.* to 'zabbix'@'localhost';
flush privileges;
cat schema.sql | mysql -u zabbix -p zabbix
cat images.sql | mysql -u zabbix -p zabbix
cat data.sql | mysql -u zabbix -p zabbix
max_execution_time = 300
max_input_time = 300
date.timezone = "asia/ho_chi_minh"
Copy file config đến /etc/zabbix/
cp /usr/share/doc/zabbix-frontend-php/examples/zabbix.conf.php.example /etc/zabbix/zabbix.conf.php
sửa file cấu hình
nano /etc/zabbix/zabbix.conf.php
$DB['DATABASE'] = 'zabbix';
$DB['USER'] = 'zabbix';
$DB['PASSWORD'] = 'your_chosen_password_here'
service zabbix-server start
Đăng nhập: username/password default: admin/zabbix
Configuration à Hosts à Create host
Kết quả:
Monitor à Graphics và chọn thiết bị cần hiển thị
- Giới thiệu
Zabbix là một giải pháp giám sát mạng phân tán, mã nguồn mở, mạnh mẽ, có nhiều tính năng độc đáo và khả năng tùy biến cao.
- Chuẩn bị
- Cài đặt Server Ubuntu 14.04
- Update Ubuntu 14.04
- Sửa Source list
Thêm các dòng sau
# Zabbix Application PPA
deb http://ppa.launchpad.net/tbfr/zabbix/ubuntu precise main
deb-src http://ppa.launchpad.net/tbfr/zabbix/ubuntu precise main
- Trust source
- Sửa hostname
hostname -F /etc/hostname
- Sửa /etc/hosts
- Cài đặt
- Update và install Zabbix server.
sudo apt-get install zabbix-server-mysql php5-mysql zabbix-frontend-php
- Trong quá trình cài đặt có yêu cầu đặt mật khẩu cho root của MySQL.
nano /etc/zabbix/zabbix_server.conf
- Sửa:
- Import schema MySQL:
create user 'zabbix'@'localhost' identified by 'your_chosen_password_here';
create database zabbix;
grant all privileges on zabbix.* to 'zabbix'@'localhost';
flush privileges;
cat schema.sql | mysql -u zabbix -p zabbix
cat images.sql | mysql -u zabbix -p zabbix
cat data.sql | mysql -u zabbix -p zabbix
- Sửa cấu hình Apache
max_execution_time = 300
max_input_time = 300
date.timezone = "asia/ho_chi_minh"
Copy file config đến /etc/zabbix/
cp /usr/share/doc/zabbix-frontend-php/examples/zabbix.conf.php.example /etc/zabbix/zabbix.conf.php
sửa file cấu hình
nano /etc/zabbix/zabbix.conf.php
$DB['DATABASE'] = 'zabbix';
$DB['USER'] = 'zabbix';
$DB['PASSWORD'] = 'your_chosen_password_here'
- cp /usr/share/doc/zabbix-frontend-php/examples/apache.conf /etc/apache2/conf-available/zabbix.conf
- a2enconf zabbix.conf
- a2enmod alias
- service apache2 restart
- nano /etc/default/zabbix-server
service zabbix-server start
Đăng nhập: username/password default: admin/zabbix
- Test Cấu hình monitor SNMP cho router CISCO
- Cấu hình SNMP trên router:
- prompt#telnet IP-Router
- Router>enable
Password:
Router# - Vào mode cấu hình với lệnh:
Router#configure terminal
Enter configuration commands, one per line. End
with CNTL/Z.
Router(config)# - Sử dụng lệnh sau để enable SNMP-Server Readonly:
Router(config)#snmp-server community public-123 RO
Thoát khỏi và lưu cấu hình:
Router(config)#exit
Router#write memory
Building configuration...
[OK]
Router#
Configuration à Hosts à Create host
Kết quả:
Monitor à Graphics và chọn thiết bị cần hiển thị
Chỉnh sửa lần cuối bởi người điều hành:
Hoặc bạn đăng bài lên Group WhiteHat để được các thành viên khác giúp đỡ thêm nha