标签:初始 oar 文件 解决方法 war down 密码 socket html
ZABBIX监控平台部署(LAMP+ZABBIX.Server.YUM源安装部署)
1、Zabbix Server端和Zabbix Agent执行如下代码:
Zabbix监控平台部署,至少需要安装四个组件,分别是Zabbix_Server、Zabbix_Web、Databases、Zabbix_Agent,如下为Zabbix监控平台安装配置详细步骤:
2、部署环境:
Server端 ————>192.168.1.59
Agent端 ————>192.168.1.60
CentOS版本 ————>CentOS 7.6.1810
ZABBIX版本 ————>Zabbix 4.0.19
3、YUM源安装步骤如下
// 安装LAMP环境:
[root@localhost ~]# yum install -y httpd httpd-devel mariadb mariadb-server mariadb-devel
> php-common php-gd php-mbstring php-xml php-bcmath php-mysql php-cli php-devel php-pear
// 添加ZABBIX扩展源:
[root@localhost ~]#
rpm -i http://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm
OR
[root@localhost~]# rpm -i https://mirrors.tuna.tsinghua.edu.cn/
> zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm
// 修改/etc/yum.repos.d/zabbix.repo内容如下:
[root@localhost ~]# cat>/etc/yum.repos.d/zabbix.repo<<EOF
[zabbix]
name=Zabbix Official Repository - $basearch
baseurl=https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/$basearch/
enabled=1
gpgcheck=1
gpgkey=https://mirrors.tuna.tsinghua.edu.cn/zabbix/RPM-GPG-KEY-ZABBIX-A14FE591
[zabbix-non-supported]
name=Zabbix Official Repository non-supported - $basearch
baseurl=https://mirrors.tuna.tsinghua.edu.cn/zabbix/non-supported/rhel/7/$basearch/
enabled=1
gpgkey=https://mirrors.tuna.tsinghua.edu.cn/zabbix/RPM-GPG-KEY-ZABBIX
gpgcheck=1
EOF
// 安装Zabbix相关软件包:
[root@localhost ~]# yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-agent
[root@localhost ~]# sed -i ‘/date.timezone/i date.timezone = PRC‘ /etc/php.ini
#启动相关服务;
[root@localhost ~]# systemctl restart httpd.service
[root@localhost ~]# systemctl restart mariadb.service
[root@localhost ~]# mysql_secure_installation //设置Mariadbroot初始化密码
#创建数据库&密码授权,设置字符编码UTF8;
[root@localhost ~]# mysql -uroot -p123456
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
MariaDB [(none)]> grant all on zabbix.* to zabbix@localhost identified by ‘123456‘;
MariaDB [(none)]> flush privileges;
[root@localhost ~]#
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz|mysql -uzabbix -p123456 zabbix
OR
[root@localhost ~]# cd /usr/share/doc/zabbix-server-mysql4.0.25
[root@localhost ~]# gunzip create.sql.gz
[root@localhost ~]# mysql -uzabbix -p123456 zabbix
MariaDB [zabbix]> source create.sql
[root@localhost ~]# cp /etc/zabbix/zabbix_server.conf zabbix_server.conf.bak
[root@localhost zabbix]# vim zabbix_server.conf
LogFile=/var/log/zabbix/zabbix_server.log
DBHost=localhost //若发现web界面zabbix-server的运行值为NO,把DBHost=127.0.0.1即可
DBName=zabbix
DBUser=zabbix
DBPassword=123456
DBSocket=/var/lib/mysql/mysql.sock
//启动zabbix服务:
[root@localhost ~]# systemctl restart zabbix-server.service
[root@localhost ~]# cd /etc/httpd/conf.d
[root@localhost conf.d]# vim zabbix.conf
# php_value date.timezone Europe/Riga
php_value date.timezone Asia/Shanghai
[root@localhost ~]# systemctl restart httpd.service //重启httpd服务
[root@localhost ~]# systemctl enable httpd.service
[root@localhost ~]# systemctl enable mariadb.service
[root@localhost ~]# systemctl enable zabbix-server.service
[root@localhost ~]# systemctl enable zabbix-agent.service
[root@localhost ~]# systemctl restart httpd.service
[root@localhost ~]# systemctl restart mariadb.service
[root@localhost ~]# systemctl restart zabbix-servier.service
[root@localhost ~]# systemctl restart zabbix-agent.service
4、Zabbix WEB GUI安装配置
通过浏览器Zabbix_WEB验证,通过浏览器访问http://192.168.1.59/zabbix/
单击Next step,如果有错误提示,需要把错误依赖解决完,方可进行Next step操作。
如上异常错误解决方法代码如下,安装缺失的软包,并修改php.ini对应参数的值即可,
yum install php-mbstring php-bcmath php-gd php-xml -y
yum install gd gd-devel -y
sed -i ‘/post_max_size/s/8/16/g;/max_execution_time/s/30/300/g;/max_input_time/s/60/300/g;
> s/\;date.timezone.*/date.timezone \= PRC/g;s/\;always_populate_raw_post_data/
> always_populate_raw_post_data/g‘ /etc/php.ini
service httpd restart //重启httpd服务:
<?php
// Zabbix GUI configuration file.
global $DB;
$DB[‘TYPE‘] = ‘MYSQL‘;
$DB[‘SERVER‘] = ‘localhost‘;
$DB[‘PORT‘] = ‘0‘;
$DB[‘DATABASE‘] = ‘zabbix‘;
$DB[‘USER‘] = ‘zabbix‘;
$DB[‘PASSWORD‘] = ‘123456‘;
// Schema name. Used for IBM DB2 and PostgreSQL.
$DB[‘SCHEMA‘] = ‘‘;
$ZBX_SERVER = ‘localhost‘;
$ZBX_SERVER_PORT = ‘10051‘;
$ZBX_SERVER_NAME = ‘ZABBIX监控系统‘;
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
登录Zabbix WEB界面,默认用户名和密码为:Admin/zabbix,
NH.A.0001__zabbix_lamp+zabbxix.server/zabbix.agent.yum源安装_V2020.10.22
标签:初始 oar 文件 解决方法 war down 密码 socket html
原文地址:https://www.cnblogs.com/yanqivip/p/1f83eb6c606a65ddbbc69ec56465ca14.html