centos7安装zabbix6.0
时间: 2023-10-06 08:08:57 浏览: 227
以下是在 CentOS 7 上安装 Zabbix 6.0 的步骤:
1. 添加 Zabbix 仓库:
```shell
rpm -ivh https://repo.zabbix.com/zabbix/6.0/rhel/7/x86_64/zabbix-release-6.0-1.el7.noarch.rpm
```
2. 安装 Zabbix Server、Agent 和 Web:
```shell
yum install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-agent
```
3. 创建 Zabbix 数据库和用户:
```shell
mysql -uroot -p
create database zabbix character set utf8 collate utf8_bin;
grant all privileges on zabbix.* to zabbix@localhost identified by 'yourpassword';
quit;
```
4. 导入 Zabbix 数据库结构:
```shell
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
```
5. 修改 Zabbix 配置文件:
打开 `/etc/zabbix/zabbix_server.conf` 文件,修改以下几行:
```ini
DBPassword=yourpassword
```
6. 启动 Zabbix Server 和 Agent:
```shell
systemctl start zabbix-server zabbix-agent
systemctl enable zabbix-server zabbix-agent
```
7. 配置防火墙:
```shell
firewall-cmd --add-service={http,https} --permanent
firewall-cmd --add-port={10050/tcp,10051/tcp} --permanent
firewall-cmd --reload
```
8. 访问 Zabbix Web:
在浏览器中输入 `http://yourip/zabbix`,然后按照提示进行 Zabbix Web 的配置。
希望这些步骤可以帮助到你。
阅读全文