Skip to content

Latest commit

 

History

History
60 lines (47 loc) · 1.46 KB

README.md

File metadata and controls

60 lines (47 loc) · 1.46 KB

zabora

Zabbix Agent - Oracle

Dependencies

Packages

  • ksh

Debian/Ubuntu

#~ sudo apt install ksh
#~

Red Hat

#~ sudo yum install ksh
#~

User account

We will need an account to perform all the checks. Below are the sentences to do it.

CREATE USER monitor IDENTIFIED BY 'xxxxxxx' DEFAULT TABLESPACE SYSTEM TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK;
GRANT CONNECT TO monitor;
GRANT RESOURCE TO monitor;
ALTER USER monitor DEFAULT ROLE ALL;
GRANT SELECT ANY TABLE TO monitor;
GRANT CREATE SESSION TO monitor;
GRANT SELECT ANY DICTIONARY TO monitor;
GRANT UNLIMITED TABLESPACE TO monitor;
GRANT SELECT ANY DICTIONARY TO monitor;
GRANT SELECT ON V_$SESSION TO monitor;
GRANT SELECT ON V_$SYSTEM_EVENT TO monitor;
GRANT SELECT ON V_$EVENT_NAME TO monitor;
GRANT SELECT ON V_$RECOVERY_FILE_DEST TO monitor;

Deploy

The username and the password can't be empty. Default variables:

NAME VALUE
ORACLE_USER monitor
ORACLE_PASS xxxxxxx

Note: these variables have to be saved in the config file (zabora.conf) in the same directory than the script.

Zabbix

#~ git clone https://github.com/sergiotocalini/zabora.git
#~ sudo ./zabora/deploy_zabbix.sh "${ORACLE_USER}" "${ORACLE_PASS}"
#~ sudo systemctl restart zabbix-agent

Note: the installation has to be executed on the zabbix agent host and you have to import the template on the zabbix web. The default installation directory is /etc/zabbix/scripts/agentd/zabora