2021年03月13日

Zabbix5.2 CentOS8 PostgreSQL Nginx




001.png


Install and configure Zabbix server for your platform
a. Install Zabbix repository
ドキュメント
# dnf clean all
b. Install Zabbix server, frontend, agent
# dnf install zabbix-server-pgsql zabbix-web-pgsql zabbix-nginx-conf zabbix-agent
c. Create initial database
ドキュメント
Make sure you have database server up and running.

Run the following on your database host.

# sudo -u postgres createuser --pwprompt zabbix
# sudo -u postgres createdb -O zabbix zabbix
On Zabbix server host import initial schema and data. You will be prompted to enter your newly created password.

# zcat /usr/share/doc/zabbix-server-pgsql*/create.sql.gz | sudo -u zabbix psql zabbix
d. Configure the database for Zabbix server
Edit file /etc/zabbix/zabbix_server.conf

DBPassword=password
e. Configure PHP for Zabbix frontend
Edit file /etc/nginx/conf.d/zabbix.conf, uncomment and set 'listen' and 'server_name' directives.

# listen 80;
# server_name example.com;
f. Start Zabbix server and agent processes
Start Zabbix server and agent processes and make it start at system boot.

# systemctl restart zabbix-server zabbix-agent nginx php-fpm
# systemctl enable zabbix-server zabbix-agent nginx php-fpm
g. Zabbixフロントエンドの設定
Connect to your newly installed Zabbix frontend: http://server_ip_or_name
Follow steps described in Zabbix documentation: Installing frontend
posted by a23 at 08:40| Comment(0) | zabbix

2021年03月11日

Zabbix Agent 2


zba2_01.png

zba2_02.png

zba2_03.png

zba2_04.png

zba2_05.png

zba2_06.png

zba2_07.png

zba2_08.png



posted by a23 at 17:23| Comment(0) | zabbix

Zabbix Agent

posted by a23 at 17:21| Comment(0) | zabbix