操作系统: | Debian 8.2 |
软件版本: | Zabbix 4.0 |
wget https://repo.zabbix.com/zabbix/4.0/debian/pool/main/z/zabbix-release/zabbix-release_4.0-2+jessie_all.deb dpkg -i zabbix-release_4.0-2+jessie_all.deb apt update
apt install zabbix-server-mysql zabbix-frontend-php zabbix-agent
mysql -uroot -p # password: # mysql> create database zabbix character set utf8 collate utf8_bin; # mysql> grant all privileges on zabbix.* to zabbix@localhost identified by ‘password‘; # mysql> quit;
Import initial schema and data. You will be prompted to enter your newly created password.
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
Edit file /etc/zabbix/zabbix_server.conf
DBPassword=password
Edit file /etc/zabbix/apache.conf, uncomment and set the right timezone for you.
php_value date.timezone Europe/Riga
Start Zabbix server and agent processes and make it start at system boot:
systemctl restart zabbix-server zabbix-agent apache2 systemctl enable zabbix-server zabbix-agent apache2
Now your Zabbix server is up and running!
Connect to your newly installed Zabbix frontend: http://server_ip_or_name/zabbix
Follow steps described in Zabbix documentation: Installing frontend
「Zabbix 3.2」- 使用源码安装
「Zabbix」- 关于版本升级
「Zabbix」- 安装(CentOS)
Home/Product/Download and install Zabbix
「Zabbix」- Debain 8.2 and Zabbix 4.0 @20210207
原文:https://www.cnblogs.com/k4nz/p/14386038.html