OverviewIn zabbix version 5.0 and above, a new feature is added, that is zabbix-agent2, which is an agent rewritten by zabbix company using go language, which can completely replace the original zabbix-agent. This proxy is much more powerful than the original one, and has many built-in plug-ins to support monitoring of basic resources. Here I choose the Oracle plug-in to see which indicators zabbix-agent2 can support monitoring. InstallInstall zabbix-agent2 Here we use the official repo provided by zabbix for installation rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm yum insall -y zabbix-agent2 Configure the /etc/zabbix/zabbix_agent2.conf file, modify the Server attribute value, run the zabbix server to poll it for data, and install oracleInstant. The oracleInstant package provided by Oracle is also used for installation. rpm -ivh https://download.oracle.com/otn_software/linux/instantclient/211000/oracle-instantclient-basic-21.1.0.0.0-1.x86_64.rpm Setting Oracle environment variables ORACLE_HOME=/usr/lib/oracle/21/client64;export ORACLE_HOME LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib64:$LD_LIBRARY_PATH;export LD_LIBRARY_PATH Configure the Oracle monitoring account Create an Oracle monitoring account and authorization CREATE USER zabbix_mon IDENTIFIED BY zabbix_pass; -- Grant access to the zabbix_mon user. GRANT CONNECT, CREATE SESSION TO zabbix_mon; GRANT SELECT ON DBA_TABLESPACE_USAGE_METRICS TO zabbix_mon; GRANT SELECT ON DBA_TABLESPACES TO zabbix_mon; GRANT SELECT ON DBA_USERS TO zabbix_mon; GRANT SELECT ON DBA_DATA_FILES TO zabbix_mon; GRANT SELECT ON DBA_FREE_SPACE TO zabbix_mon; GRANT SELECT ON DBA_TEMP_FILES to zabbix_mon; GRANT SELECT ON GV_$SORT_SEGMENT to zabbix_mon; GRANT SELECT ON V_$ACTIVE_SESSION_HISTORY TO zabbix_mon; GRANT SELECT ON V_$ARCHIVE_DEST TO zabbix_mon; GRANT SELECT ON V_$ASM_DISKGROUP TO zabbix_mon; GRANT SELECT ON V_$DATABASE TO zabbix_mon; GRANT SELECT ON V_$DATAFILE TO zabbix_mon; GRANT SELECT ON V_$INSTANCE TO zabbix_mon; GRANT SELECT ON V_$LOG TO zabbix_mon; GRANT SELECT ON V_$OSSTAT TO zabbix_mon; GRANT SELECT ON V_$PGASTAT TO zabbix_mon; GRANT SELECT ON V_$PARAMETER TO zabbix_mon; GRANT SELECT ON V_$PROCESS TO zabbix_mon; GRANT SELECT ON V_$RECOVERY_FILE_DEST TO zabbix_mon; GRANT SELECT ON V_$RESTORE_POINT TO zabbix_mon; GRANT SELECT ON V_$RESTORE_POINT TO zabbix_mon; GRANT SELECT ON V_$SESSION TO zabbix_mon; GRANT SELECT ON V_$SGASTAT TO zabbix_mon; GRANT SELECT ON V_$SYSMETRIC TO zabbix_mon; GRANT SELECT ON V_$SYSTEM_PARAMETER TO zabbix_mon; GRANT SELECT ON V_$PDBS TO zabbix_mon; GRANT SELECT ON V_$SYSTEM_PARAMETER to zabbix_mon; Configure the zabbix-agent2 configuration file. To facilitate Oracle monitoring and management, it is recommended to use a new configuration file and place it in /etc/zabbix/zabbix_agent2.d. The configuration content is as follows: [root@vcenter zabbix_agent2.d]# cat monitor_oracle.conf Plugins.Oracle.Sessions.demo.Uri=tcp://172.20.20.150:1521 Plugins.Oracle.Sessions.demo.User=zabbix_mon Plugins.Oracle.Sessions.demo.Password=zabbix_pass Plugins.Oracle.Sessions.demo.Service=demopdb Configuring Host Templates The template that comes with zabbix already monitors Oracle indicators. Here we need to set the corresponding macro variables to point to our Oracle database. This is the end of this article about zabbix agent2 monitoring oracle database. For more relevant zabbix monitoring oracle database content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL query optimization: a table optimization solution for 1 million data
>>: Example code for implementing raindrop animation effect with CSS
Let me first talk about the implementation steps:...
Table of contents Create a simple springboot proj...
Preface Linux's file permission management is...
Preface I was recently reading about MySQL indexe...
Preface Recently, a data was operated incorrectly...
Web design and development is hard work, so don...
The players we see on the web pages are nothing m...
Here is a case study on how to close ads using Ja...
· 【Scene description】 After HTTP1.1, the HTTP pro...
Table of contents 1. Nginx implements load balanc...
1. What is it? MySQL is the most popular relation...
This work uses the knowledge of front-end develop...
content Use scaffolding to quickly build a node p...
MySQL Query Cache is on by default. To some exten...
Table of contents String length: length charAt() ...