CentOS 8 安装 Zabbix 4.4
RHEL 7 安装 Zabbix 4.4环境搭建1.永久关闭Selinux[root@localhost ~]# vim /etc/selinux/configThis file controls the state of SELinux on the system.SELINUX= can take one of these three values:...
·
CentOS 8 安装 Zabbix 4.4
环境搭建
1.关闭Selinux
[root@localhost ~]# vim /etc/selinux/config //进入SELinux配置文件
SELINUX=disabled //需修改参数
getenfoce //查看状态
2.关闭防火墙
[root@localhost ~]# systemctl disable firewalld.service //禁止开机启动
[root@localhost ~]# systemctl stop firewalld.service //关闭防火墙
firewall-cmd --state //查看状态
3.LAMP 安装环境
3.1、安装Apche
[root@linuxprobe ~]# yum install httpd //安装
[root@linuxprobe ~]# systemctl start httpd //启动
[root@linuxprobe ~]# systemctl enable httpd //加入开机自启动
3.2、安装mariadb
[root@localhost ~]# yum install -y mariadb mariadb-server
[root@localhost ~]# systemctl enable mariadb.service
[root@localhost ~]# systemctl start mariadb.service
3.3、
3.4、安装zabbix
3.4.1、YUM 包
[root@localhost ~]# rpm -ivh https://repo.zabbix.com/zabbix/4.4/rhel/7/x86_64/zabbix-release-4.4-1.el7.noarch.rpm
3.4.2、安装zabbix 组件
yum -y install zabbix-agent
yum -y install zabbix-server-mysql
yum -y install zabbix-web-mysql
3.4.3、创建一个zabbix库并设置为utf8的字符编码格式
进入数据库
#mysql
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin;
3.4.4、创建账户并且授权设置密码
MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';
MariaDB [(none)]> show databases; //查看数据库
3.4.5、数据库刷新
flush privileges;
3.4.6、退出数据库
exit
3.4.7、导入表
cd /usr/share/doc/zabbix-server-mysql-3.2.10/ //切换目录
gunzip create.sql.gz //解压
//对表进行导入
mysql
> use zabbix;
> source create.sql
或者#zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
3.4.8、配置zabbix server配置文件
cd /etc/zabbix //切换目录
# vim zabbix_server.conf //配置文件
DBHost=localhost //数据库位置
DBName=zabbix //数据库名称
DBUser=zabbix //用户名
DBPassword=zabbix // 密码
3.4.9、修改时区
# cd /etc/httpd/conf.d
vi zabbix.conf //配置文件
php_value date.timezone Asia/Shanghai //修改时区
systemctl restart httpd //重启httpd 服务。
//路径 /etc/php-fpm.d/zabbix.conf
3.4.10、修改Agent
vim /etc/zabbix/zabbix_agentd.conf
Server=192.168.174.5 //服务端的ip
Hostname=Zabbix Server //与zabbix创建的主机名一致
启动Zabbix服务
systemctl enable zabbix-server //开机启动
systemctl enable zabbix-agent //开机启动
systemctl start zabbix-server //启动服务
systemctl start zabbix-agent //启动服务
4、登陆zabbix网址设置
http:// IP/zabbix
数据库配置,密码是数据库密码zabbix
Name 任意填写。
登陆账户是Admin
密码是zabbix
5、设置中文
5.1、WEB设置中文
5.2、中文乱码
zabbix字体文件目录
zabbix 4.2:/usr/share/zabbix/assets/fonts/
zabbix 4.0:/usr/share/zabbix/fonts/
“楷体 常规”改名字graphfont.ttf,上传到相应目录
重启服务。
6、对服务器自身进行监控
CentOS 8 安装 Zabbix 4.4
zabbix 邮件告警
Zabbix 4.4 监控 Windows Server 2016
Zabbix 4.4 监控 华为交换机小案例
更多推荐
已为社区贡献1条内容
所有评论(0)