cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1658
Views
4
Helpful
1
Replies

PostgreSQL on Linux based UCCX

Maic Naatz
Level 1
Level 1

I am trying to install an PostgreSQL JDBC-Driver on UCCX 8.5.1 using postgresql-8.4-703.jdbc.jar file. After selecting the driver jar file i have to determine the Driver class name. There are only 4 Driver class names available:

com.ibm.db2.jcc.DB2Driver

oracle.jdbc.driver.OracleDriver

net.southforge.jtds.jdbc.Driver

com.sybase.jdbc2.jdbc.SybDriver

So i'm missing the "org.postgresql.Driver" and also a MySQL Class. A very helpful website for determining the JDBC-URL is:

http://www.petefreitag.com/articles/jdbc_urls/

Has anyone installed a PostgreSQL Driver on UCCX 8.x?

I know that the PostgreSQL database are not supportet by Cisco. Maybe, there is a way to it?

1 Reply 1

Gergely Szabo
VIP Alumni
VIP Alumni

Hi, Cisco supports the "3" database vendors (Microsoft/Sybase, IBM DB2, Oracle) only. So there's no way you get it working with Postgres.

What I would do:

* if it's an UCCX environment:

1. install DB2 Express-C (free of charge) on a separate Linux machine - this is the most cost effective option. Or if you have some money to burn, get a Windows server and install SQL Server Express 2K8 on it. I know it's not Postgres but you have a low cost database integration with UCCX.

2. if 1 is not an option, I'd write a simple PHP/Python/Grails/your-favorite-web-framework application that does basic CRUD on a Postgres database. UCCX scripts can do HTTP GET and POST, after all.

* if it's an UCCE environment:

1. use the Application gateway node from ICM to pull/push data from/to outside.

Have fun exploring,

G.