centos7 安装zabbix 7.9
时间: 2024-05-19 20:09:41 浏览: 219
CentOS 7 安装 Zabbix 7.9 的步骤如下:
1. 安装必要的依赖包和软件源
```shell
sudo yum install epel-release -y
sudo rpm -ivh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm
```
2. 安装 Zabbix Server 和 Agent
```shell
sudo yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent -y
```
3. 安装 MySQL 数据库,并创建数据库和用户
```shell
sudo yum install mariadb-server -y
sudo systemctl start mariadb.service
sudo systemctl enable mariadb.service
sudo mysql_secure_installation
mysql -u root -p
CREATE DATABASE zabbix character set utf8 collate utf8_bin;
CREATE USER 'zabbix'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON zabbix.* TO 'zabbix'@'localhost';
FLUSH PRIVILEGES;
exit;
```
4. 导入 Zabbix 数据库模板
```shell
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -u zabbix -p zabbix
```
5. 配置 Zabbix Server
编辑 Zabbix Server 配置文件 `/etc/zabbix/zabbix_server.conf`,修改以下参数:
```text
DBPassword=password # 数据库密码,与之前创建用户时设置的密码一致
```
6. 启动 Zabbix Server 和 Agent,设置开机自启动
```shell
sudo systemctl start zabbix-server.service
sudo systemctl enable zabbix-server.service
sudo systemctl start zabbix-agent.service
sudo systemctl enable zabbix-agent.service
```
7. 配置防火墙
```shell
sudo firewall-cmd --add-service={http,https} --permanent
sudo firewall-cmd --add-port={10050/tcp,10051/tcp} --permanent
sudo firewall-cmd --reload
```
8. 配置 Zabbix Web 界面
编辑 Zabbix Web 配置文件 `/etc/httpd/conf.d/zabbix.conf`,修改以下参数:
```text
php_value date.timezone Asia/Shanghai # 修改时区
```
重启 Apache 服务:
```shell
sudo systemctl restart httpd.service
```
现在,您就可以通过浏览器访问 `http://<Server_IP>/zabbix` 来打开 Zabbix Web 界面了。默认的用户名和密码是 `Admin` 和 `zabbix`。
阅读全文