DBforBIX

I’ve fixed an issue notified from Ehartmann and tested from Tiagosoares thank you to all my follower for all the help received!

Please download and use DBforBIX 0.5.1

 

 

db4bix architecture

 

Tags: , , , , , ,

admin on January 23rd, 2012

DBforBIX

David Rooke has kindly notified to me an issue on DBforBIX’s templates.

The issue it’s about “alive”. The item key should be:
DBforBIX.[PostgreSQL|Oracle|MySQL|DB2|MSSQL].alive

I’ve modified the template and reposted the package.
You can modify your own template or download DBforBIX 0.5

 

db4bix architecture

 

 

 

 

 

Tags: , , , ,

DBforBIX

DBforBIX 0.5 has been released!

db4bix architecture

 

on this release :

  • some minor improvement on documentation
  • fixed an issue with “AddSpace” parameter set
  • fixed other minor issue

this software lacks of:

  • query for MSSQL Server
  • query for DB2

 

THIS IS A PREVIEW RELEASE AND IS NOT FULLY TESTED AS A STABLE PRODUCTION RELEASE

You can download DBforBIX here

 

 

Tags: , , , , , , ,

admin on November 8th, 2011

I am happy to announce that we have a new wiki!
Currently only Orabbix‘s manual has been updated and is almost completed, the rest is still a work in progress but it is a good place where start.
On the wiki is also a first version of the manual and DBforBIX PostBIX
Stay tuned!

The wiki is available from menù on top

 

Tags: , , , ,

The following error:

java.sql.SQLException: ORA-24247: network access denied by access control list (ACL)
ORA-06512: at “SYS.UTL_INADDR”, line 4
ORA-06512: at “SYS.UTL_INADDR”, line 35
ORA-06512: at line 1

Cause:

A new security measure is introduced in Oracle 11g Release 1 (11.1) for the following network-related PL/SQL packages: UTL_TCP, UTL_HTTP, UTL_SMTP, UTL_MAIL, UTL_INADDR, DBMS_LDAP and the HttpUriType type.
The invoker of those packages needs additional privileges to connect to an external host or to resolve the name or the IP address of a host.
The packages check the invoker for the necessary privileges only when the calls are made at runtime and raises an exception if the invoker lacks the privileges. T
his new security measure is implemented by the XML DB access control list (ACL) mechanism and, therefore, requires XML DB to be installed and Configure network Access Control Lists (ACLs) in the database before these packages can work as they were working in prior releases.

Set the ACL for your 11g schema :

1. Connect to the database with SYS user as SYSDBA
2. Execute the following script after updating the email server name and port number :

SQL> exec dbms_network_acl_admin.create_acl(acl => ‘resolve.xml’,description => ‘resolve acl’, principal =>’ZABBIX’, is_grant => true, privilege => ‘resolve’);
SQL> exec dbms_network_acl_admin.assign_acl(acl => ‘resolve.xml’, host =>’*');
SQL> COMMIT;

You can verify the above is correct by running:

select utl_inaddr.get_host_name(’127.0.0.1′) from dual;

and everything should working fine;

Tags: , , , ,