DoC Computing Support Group


Differences between revisions 8 and 9
Revision 8 as of 2011-10-27 16:45:03
Size: 4952
Editor: ldk
Comment:
Revision 9 as of 2011-10-30 07:40:15
Size: 5042
Editor: ldk
Comment:
Deletions are marked like this. Additions are marked like this.
Line 29: Line 29:
{{{jdbc:postgresql://db.doc.ic.ac.uk/databaseYouWantToAccess?ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory}}} {{{jdbc:postgresql://db.doc.ic.ac.uk/theDB?ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory}}}
Line 31: Line 31:
Make the obvious substitutions in the above URI and specify the correct user-name and password as parameters for the database connection. Here is a simple Java example illustrating these concepts: Replace {{{theDB}}} in the above URI with the name of the database to which you wish to connect. Having established the URI, you must now specify the appropriate user-name and password as parameters to make a successful database connection. Here is a simple Java example illustrating these concepts:
Line 43: Line 43:
Line 44: Line 45:
Line 47: Line 49:
            System.out.println( "Could not find org.postgresql.Driver " +
                                "class - please check your classpath." );
  System.out.println( e );
            System.out.println( "Could not find org.postgresql.Driver class " +
                                "- please check your classpath." );
         System.out.println( e );
Line 51: Line 53:

        String uri = "jdbc:postgresql://db.doc.ic.ac.uk/databaseYouWantToAccess?&ssl=true" +
 
        String uri = "jdbc:postgresql://db.doc.ic.ac.uk/theDB?&ssl=true" +
Line 55: Line 57:
        Connection db = null;  Connection db = null;
Line 57: Line 59:
            db = DriverManager.getConnection(uri, "userToConnectAs", "DoCPostgreSQLPasswordForThatUser");
        } catch ( java.sql.SQLException e )
       
{
     System.out.println( "Problem making a connection." + e );
            db = DriverManager.getConnection(uri, "pgUser", "pgUserPasseword");
            if ( db != null ) {
  System.out.println("Successfully connected to db.doc using " +
              "unauthenticated SS
L.");
     }
 
} catch ( java.sql.SQLException e ) {
  System.out.println( e );
Line 62: Line 67:
 if ( db != null ) {
  System.out.println("Successfully connected to db.doc with SSL.");
 }
Line 69: Line 71:
Change the obvious strings, save it under the file-name {{{'CheckDoCDBNoSSL.java'}}} and compile it like so (we're assuming you're using Debian/Ubuntu; adjust JAR file location as required): Change the obvious strings ({{{pgUser}}} and {{{pgUserPasseword}}}), save it under the file-name {{{'CheckDoCDBNoSSL.java'}}} and compile it like so (we assume that you are using Debian/Ubuntu; adjust JAR file location as required):
Line 73: Line 75:
Run it like so(as before, adjust JAR file location as required): Run it like so (as before, adjust JAR file location as required):

PostgreSQL connections from off-site

If you want to connect directly to the PostgreSQL server from outside the college network, you must use SSL encryption. Here are four possible ways to address this.

Use the college VPN service

If you first connect using the college VPN service, then your PostgreSQL connection will be considered as being from on-site. In this case, you will not need to use SSL encryption.

Use SSH tunnelling

This is similar to using VPN but at an application-level. Use an SSH client to create a tunnel from your computer outside the network to db.doc.ic.ac.uk through one of the externally-accessible SSH servers: shell1.doc.ic.ac.uk -- shell4.doc.ic.ac.uk. Here is the syntax from a Linux terminal (the same command can be run in a Mac OS X terminal):

ssh -L 12345:db.doc.ic.ac.uk:5432 shell1.doc.ic.ac.uk

After you authenticate, the above command will set up a tunnel from port 12345 on your local computer to port 5432 (upon which the PostgreSQL service listens on db.doc.ic.ac.uk). You can then configure the PostgreSQL client on your local computer to connect to localhost:12345. Here is the syntax from a Linux terminal:

psql --host localhost --port 12345 -U postgreUserName --dbname=postgresDatabaseName

This assumes that the PostgreSQL client 'psql' is installed locally. You can use plink under Windows to run the same SSH port-forwarding (plink documentation here

SSL Connection without Authentication

We assume that you are using Java; please adapt the following as required for other programming languages.

Suppose that you want to (or must use) SSL encryption but you do not care about authenticating the SSL certificate for db.doc.ic.ac.uk. First of all, you will need the PostgreSQL jdbc driver in your Java classpath. Download the JAR file from http://jdbc.postgresql.org/ or if you are using Debian or Ubuntu, 'apt-get install libpg-java' (which installs /usr/share/java/postgresql.jar). Update your CLASSPATH environment variable to reference the relevant JAR file location or include it in the '-cp' argument of your java/javac invocations.

You should then specify a data-source of the following form:

jdbc:postgresql://db.doc.ic.ac.uk/theDB?ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory

Replace theDB in the above URI with the name of the database to which you wish to connect. Having established the URI, you must now specify the appropriate user-name and password as parameters to make a successful database connection. Here is a simple Java example illustrating these concepts:

import java.util.Properties;
import java.io.IOException;
import java.lang.ClassNotFoundException;
import java.net.Socket;
import java.lang.reflect.Constructor;
import javax.net.ssl.SSLSocketFactory;
import java.sql.*;

public class CheckDoCDBNoSSL {

    public static void main(String[] args) {

        try {
            Class pgClass = Class.forName("org.postgresql.Driver");
        } catch ( java.lang.ClassNotFoundException e ) {
            System.out.println( "Could not find org.postgresql.Driver class " +
                                "- please check your classpath." );
            System.out.println( e );
        }
        
        String uri = "jdbc:postgresql://db.doc.ic.ac.uk/theDB?&ssl=true" +
                     "&sslfactory=org.postgresql.ssl.NonValidatingFactory";

        Connection db = null;
        try {
            db = DriverManager.getConnection(uri, "pgUser", "pgUserPasseword");
            if ( db != null ) {
                System.out.println("Successfully connected to db.doc using " +
                                   "unauthenticated SSL.");
            }
        } catch ( java.sql.SQLException e ) {
                System.out.println( e );
        }
    }
}

Change the obvious strings (pgUser and pgUserPasseword), save it under the file-name 'CheckDoCDBNoSSL.java' and compile it like so (we assume that you are using Debian/Ubuntu; adjust JAR file location as required):

javac -cp /usr/share/java/postgresql.jar:. CheckDoCDBNoSSL.java

Run it like so (as before, adjust JAR file location as required):

java -cp /usr/share/java/postgresql.jar:. CheckDoCDBNoSSL

SSL Connection with Authentication

For our more-discerning clientèle, we can offer you the SSL certificate for db.doc.ic.ac.uk so that you can be reasonably certain that your application is indeed to talking to the correct host. As a first step, please e-mail help@doc.ic.ac.uk requesting the certificate if you want to go down this path. If you know of a straight-forward way to query a PostgreSQL server for its SSL certificate, please let us know?

To be continued

 
 

guides/databases/postgres-ssl (last edited 2015-10-04 18:09:06 by ldk)