centos7安装zabbix5.0LTS(postgresql)
CentOS 7 安装 Zabbix 5.0 LTS (PostgreSQL) 的步骤如下:
- 安装 PostgreSQL:
sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
sudo yum install -y postgresql12-server
sudo /usr/pgsql-12/bin/postgresql-12-setup initdb
sudo systemctl enable postgresql-12
sudo systemctl start postgresql-12
- 创建 Zabbix 用户和数据库:
sudo -i -u postgres
createuser --pwprompt zabbix
createdb -O zabbix zabbix_server
- 安装 Zabbix 前端、后端和代理:
sudo rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
sudo yum install -y zabbix-server-pgsql zabbix-web-pgsql zabbix-apache-conf zabbix-agent
配置 Zabbix server:
编辑
/etc/zabbix/zabbix_server.conf
文件,设置数据库密码给 Zabbix 用户:
DBPassword=<your_password>
- 配置 PHP for Zabbix frontend:
sudo yum install -y epel-release
sudo yum install -y httpd php php-mysql php-gd php-bcmath php-xml php-mbstring
sudo systemctl start httpd
sudo systemctl enable httpd
- 创建软链接 for PHP files:
sudo ln -s /usr/share/zabbix /var/www/html/zabbix
- 配置 SELinux for Zabbix frontend:
sudo chcon -t httpd_sys_content_t /var/www/html/zabbix
sudo semanage fcontext -a -t httpd_sys_content_t /var/www/html/zabbix /var/www/html/zabbix
- 导入初始数据库 schema 和 data:
zcat /usr/share/doc/zabbix-server-pgsql*/create.sql.gz | sudo -u postgres psql -U zabbix -d zabbix_server
- 启动并设置开机自启动 Zabbix server 和 agent:
sudo systemctl start zabbix-server
sudo systemctl enable zabbix-server
sudo systemctl start zabbix-agent
sudo systemctl enable zabbix-agent
配置 Zabbix frontend:
在浏览器中访问
http://your_server_ip/zabbix
并按照提示完成前端的配置。
请注意,这些步骤仅提供了安装的高级概览,实际安装时可能需要根据具体环境调整配置文件和安全设置。
评论已关闭