zabbix oracle监控插件orabbix部署安装

1,下载orabbix插件包(插件包同时满足在大部分POSIX-linux及unix和大部分版本的windows下运行,玩转类似但不等同于Tomcat)

  wget http://www.smartmarmot.com/downloads/orabbix-1.2.3.zip

2,解压插件包部署(插件包是绿色的解压即可使用)

  unzip orabbix-1.2.3.zip

  具体设置见

  

orabbix 插件监控oracle之权限设定sql语句

1,账号创建,指定数据及临时表空间profile及账号状态;
  create user zabbix identified by ruiy default tablespace system temporary tablespace temp profile default account unlock;

2,给账号赋权限

  grant connect,resource,dba to zabbix;
  alter user zabbix default role all;
  grant select any table to zabbix;
  grant create session to zabbix;
  grant select any dictionary to zabbix;
  grant unlimited tablespace to zabbix;

3,针对oracle-11G还需执行如下一条语句

  exec dbms_network_acl_admin.create_acl(acl => ‘resolve.xml‘,description => ‘resolve acl‘,principal=‘zabbix‘,is_grant => true,privilege => ‘resolve‘);

  exec dbms_network_acl_admin.assign_acl(acl => ‘resolve.xml‘,host =>‘*‘);

4,检验一下上面的配置结果

  select utl_inaddr.get_host_name(‘127.0.0.1‘) from dual;

 

zabbix oracle监控插件orabbix部署安装,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。