Re: JDBC connection problem

Lists: pgsql-jdbc
From: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: JDBC connection problem
Date: 2008-02-05 03:18:51
Message-ID: 4df751bf0802041918nafe3dc4na662592641a56a5b@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Hello List

I am having trouble connecting to a psql database running on Debian
GNU/Linux system

The version of psql I am using in the system is 8.2.6.

No matter what I do, I continually am getting the error:

*Backend start-up failed: FATAL: database "RW_GEO" does not exist

*when my JDBC component tries to connect using a URL like this:

jdbc:postgresql://localhost:5432/RW_GEO

from a tomcat app

I have confirmed that the database RW_GEO does in fact exist as I can
see/query tables from it from psql.

Also, when I run my app on my development machine (windows), I can connect
via tomcat with no problems to my local psql server.

Does any one have any ideas on what is causing the connection to not see the
database that does in fact exist?

I am thinking that perhaps it is a permission error with tomcat, but am not
sure...

Any advice, or things to investigate would be most appreciated.

Thank you

Brian


From: Guy Rouillier <guyr-ml1(at)burntmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 06:05:52
Message-ID: 47A7FCC0.1020201@burntmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Brian Tomaszewski wrote:
> I am having trouble connecting to a psql database running on Debian
> GNU/Linux system
>
> The version of psql I am using in the system is 8.2.6.
>
> No matter what I do, I continually am getting the error:
>
> /Backend start-up failed: FATAL: database "RW_GEO" does not exist
>
> /when my JDBC component tries to connect using a URL like this:
>
> jdbc:postgresql://localhost:5432/RW_GEO
>
> from a tomcat app
>
> I have confirmed that the database RW_GEO does in fact exist as I can
> see/query tables from it from psql.
>
> Also, when I run my app on my development machine (windows), I can
> connect via tomcat with no problems to my local psql server.

I'm trying to follow your runtime environment, but some pieces are
missing. When you say you can query the database running on Debian
using psql, is that psql running on your Windows box or on the Debian
box? I don't think this has anything to do with JDBC. The URL you show
above has "localhost" as the server for the DB. That's probably not
right, is it? I wouldn't think you'd have Tomcat running on your
database server.

So, run psql from whatever box is running Tomcat, and figure out how to
connect it to your DB server. Once you've done that, you should be able
to just transfer the connection settings to JDBC. I'm anticipating once
you attempt to do that, you'll encounter a connection error. That's
because you need to update pg_hba.conf to allow access to your database
from remote hosts.

--
Guy Rouillier


From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: Guy Rouillier <guyr-ml1(at)burntmail(dot)com>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 11:29:22
Message-ID: DA45B3E4-A859-490B-B9A2-460A9E75AEC3@fastcrypt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Brian,

Try using lower case for the name of your database.

Postgresql and upper case is an impedance mismatch.

Dave
On 5-Feb-08, at 1:05 AM, Guy Rouillier wrote:

> Brian Tomaszewski wrote:
>> I am having trouble connecting to a psql database running on
>> Debian GNU/Linux system
>> The version of psql I am using in the system is 8.2.6.
>> No matter what I do, I continually am getting the error:
>> /Backend start-up failed: FATAL: database "RW_GEO" does not exist
>> /when my JDBC component tries to connect using a URL like this:
>> jdbc:postgresql://localhost:5432/RW_GEO
>> from a tomcat app
>> I have confirmed that the database RW_GEO does in fact exist as I
>> can see/query tables from it from psql.
>> Also, when I run my app on my development machine (windows), I can
>> connect via tomcat with no problems to my local psql server.
>
> I'm trying to follow your runtime environment, but some pieces are
> missing. When you say you can query the database running on Debian
> using psql, is that psql running on your Windows box or on the
> Debian box? I don't think this has anything to do with JDBC. The
> URL you show above has "localhost" as the server for the DB. That's
> probably not right, is it? I wouldn't think you'd have Tomcat
> running on your database server.
>
> So, run psql from whatever box is running Tomcat, and figure out how
> to connect it to your DB server. Once you've done that, you should
> be able to just transfer the connection settings to JDBC. I'm
> anticipating once you attempt to do that, you'll encounter a
> connection error. That's because you need to update pg_hba.conf to
> allow access to your database from remote hosts.
>
> --
> Guy Rouillier
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 7: You can help support the PostgreSQL project by donating at
>
> http://www.postgresql.org/about/donate


From: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
To: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 13:17:59
Message-ID: 4df751bf0802050517qf027f50xd50d90de9166db1c@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Guy,

Thanks for the response. See below for clarifications:

On Feb 5, 2008 1:05 AM, Guy Rouillier <guyr-ml1(at)burntmail(dot)com> wrote:

> Brian Tomaszewski wrote:
> > I am having trouble connecting to a psql database running on Debian
> > GNU/Linux system
> >
> > The version of psql I am using in the system is 8.2.6.
> >
> > No matter what I do, I continually am getting the error:
> >
> > /Backend start-up failed: FATAL: database "RW_GEO" does not exist
> >
> > /when my JDBC component tries to connect using a URL like this:
> >
> > jdbc:postgresql://localhost:5432/RW_GEO
> >
> > from a tomcat app
> >
> > I have confirmed that the database RW_GEO does in fact exist as I can
> > see/query tables from it from psql.
> >
> > Also, when I run my app on my development machine (windows), I can
> > connect via tomcat with no problems to my local psql server.
>
> I'm trying to follow your runtime environment, but some pieces are
> missing. When you say you can query the database running on Debian
> using psql, is that psql running on your Windows box or on the Debian
> box?

I can run psql (the command line tool) on Debian and using the psql tool on
Debian see/query the database that is always being reported as not existing
when the app connects.

On my Windows box, I use pgAdmin interface. I also develop the Java Code for
the app on windows and then upload it to the server to run/tes. Also, I
built the inital database on the windows box, and then uploaded and restored
it to the debian postgres running there

> I don't think this has anything to do with JDBC. The URL you show
> above has "localhost" as the server for the DB. That's probably not
> right, is it? I wouldn't think you'd have Tomcat running on your
> database server.

yes, we do have tomcat running on the database server (i.e the debian
server), is that a bad thing?

My thought with using localhost on the debain is that is that is how the
tomcat could easily connect

So, run psql from whatever box is running Tomcat, and figure out how to
> connect it to your DB server.

I have done this on windows. Every thing for my app on windows is on the
same box (tomcat, postgres etc). When I port the app up to the debian
server, the connection fails

> Once you've done that, you should be able
> to just transfer the connection settings to JDBC. I'm anticipating once
> you attempt to do that, you'll encounter a connection error. That's
> because you need to update pg_hba.conf to allow access to your database
> from remote hosts.
>

Ok, so is the real issue then having tomcat and postgres on the same server?
Should they be physically separate? If they are not, what do you need to
consider in terms of configuration

Thank you for your time

Brian

>
> --
> Guy Rouillier
>
> ---------------------------(end of broadcast)---------------------------
> TIP 7: You can help support the PostgreSQL project by donating at
>
> http://www.postgresql.org/about/donate
>


From: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
To: "Dave Cramer" <pg(at)fastcrypt(dot)com>
Cc: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 13:18:45
Message-ID: 4df751bf0802050518k1636c8f1ybe1cdac3153bb56@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Dave,

Thanks for the tip. I just tried a test with a lowercase db and the
connection still didn't work.

Thanks again

BT

On Feb 5, 2008 6:29 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:

> Brian,
>
> Try using lower case for the name of your database.
>
> Postgresql and upper case is an impedance mismatch.
>
> Dave
> On 5-Feb-08, at 1:05 AM, Guy Rouillier wrote:
>
> > Brian Tomaszewski wrote:
> >> I am having trouble connecting to a psql database running on
> >> Debian GNU/Linux system
> >> The version of psql I am using in the system is 8.2.6.
> >> No matter what I do, I continually am getting the error:
> >> /Backend start-up failed: FATAL: database "RW_GEO" does not exist
> >> /when my JDBC component tries to connect using a URL like this:
> >> jdbc:postgresql://localhost:5432/RW_GEO
> >> from a tomcat app
> >> I have confirmed that the database RW_GEO does in fact exist as I
> >> can see/query tables from it from psql.
> >> Also, when I run my app on my development machine (windows), I can
> >> connect via tomcat with no problems to my local psql server.
> >
> > I'm trying to follow your runtime environment, but some pieces are
> > missing. When you say you can query the database running on Debian
> > using psql, is that psql running on your Windows box or on the
> > Debian box? I don't think this has anything to do with JDBC. The
> > URL you show above has "localhost" as the server for the DB. That's
> > probably not right, is it? I wouldn't think you'd have Tomcat
> > running on your database server.
> >
> > So, run psql from whatever box is running Tomcat, and figure out how
> > to connect it to your DB server. Once you've done that, you should
> > be able to just transfer the connection settings to JDBC. I'm
> > anticipating once you attempt to do that, you'll encounter a
> > connection error. That's because you need to update pg_hba.conf to
> > allow access to your database from remote hosts.
> >
> > --
> > Guy Rouillier
> >
> > ---------------------------(end of
> > broadcast)---------------------------
> > TIP 7: You can help support the PostgreSQL project by donating at
> >
> > http://www.postgresql.org/about/donate
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: Don't 'kill -9' the postmaster
>


From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: Brian Tomaszewski <brianbanjo(at)gmail(dot)com>
Cc: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 13:47:53
Message-ID: 79033F6E-43A8-498F-9390-C58658339C4D@fastcrypt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Brian,

I have no idea why you can't connect but I have comments about running
tomcat and pg below

write a very small program which attempts to connect outside of tomcat

ie

main
class.forName("org.postgresql.Driver")
Driver.getConnection(....

and see if that connects

see below for more comments
On 5-Feb-08, at 8:17 AM, Brian Tomaszewski wrote:

> Guy,
>
> Thanks for the response. See below for clarifications:
>
> On Feb 5, 2008 1:05 AM, Guy Rouillier <guyr-ml1(at)burntmail(dot)com> wrote:
> Brian Tomaszewski wrote:
> > I am having trouble connecting to a psql database running on Debian
> > GNU/Linux system
> >
> > The version of psql I am using in the system is 8.2.6.
> >
> > No matter what I do, I continually am getting the error:
> >
> > /Backend start-up failed: FATAL: database "RW_GEO" does not exist
> >
> > /when my JDBC component tries to connect using a URL like this:
> >
> > jdbc:postgresql://localhost:5432/RW_GEO
> >
> > from a tomcat app
> >
> > I have confirmed that the database RW_GEO does in fact exist as I
> can
> > see/query tables from it from psql.
> >
> > Also, when I run my app on my development machine (windows), I can
> > connect via tomcat with no problems to my local psql server.
>
> I'm trying to follow your runtime environment, but some pieces are
> missing. When you say you can query the database running on Debian
> using psql, is that psql running on your Windows box or on the Debian
> box?
>
> I can run psql (the command line tool) on Debian and using the psql
> tool on Debian see/query the database that is always being reported
> as not existing when the app connects.
>
> On my Windows box, I use pgAdmin interface. I also develop the Java
> Code for the app on windows and then upload it to the server to run/
> tes. Also, I built the inital database on the windows box, and then
> uploaded and restored it to the debian postgres running there
>
>
>
> I don't think this has anything to do with JDBC. The URL you show
> above has "localhost" as the server for the DB. That's probably not
> right, is it? I wouldn't think you'd have Tomcat running on your
> database server.
>
> yes, we do have tomcat running on the database server (i.e the
> debian server), is that a bad thing?
It's not good, since tomcat and postgresql both like memory. However
you may not have a choice.

>
>
> My thought with using localhost on the debain is that is that is how
> the tomcat could easily connect
>
>
> So, run psql from whatever box is running Tomcat, and figure out how
> to
> connect it to your DB server.
>
> I have done this on windows. Every thing for my app on windows is on
> the same box (tomcat, postgres etc). When I port the app up to the
> debian server, the connection fails
>
>
> Once you've done that, you should be able
> to just transfer the connection settings to JDBC. I'm anticipating
> once
> you attempt to do that, you'll encounter a connection error. That's
> because you need to update pg_hba.conf to allow access to your
> database
> from remote hosts.
>
>
> Ok, so is the real issue then having tomcat and postgres on the same
> server? Should they be physically separate? If they are not, what do
> you need to consider in terms of configuration
>
No, it's no real issue, other than a resource sharing problem.

Dave
> Thank you for your time
>
> Brian
>
>
> --
> Guy Rouillier
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 7: You can help support the PostgreSQL project by donating at
>
> http://www.postgresql.org/about/donate
>


From: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
To: "Dave Cramer" <pg(at)fastcrypt(dot)com>
Cc: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 14:31:21
Message-ID: 4df751bf0802050631udddf42o62acace6e21d08ae@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Dave,

Thanks for the quick reply.

I am using java code like what you show to connect to postresql in my app

And that's part of the weird thing - java connect code with postgres
database on windows is fine, same java code trying to connect to to a
postgres database on debian, can't connect or even see the database for
that matter

Could it be a driver version issue?

Thanks again for your time

Brian

On Feb 5, 2008 8:47 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:

> Brian,
> I have no idea why you can't connect but I have comments about running
> tomcat and pg below
>
> write a very small program which attempts to connect outside of tomcat
>
> ie
>
> main
> class.forName("org.postgresql.Driver")
> Driver.getConnection(....
>
> and see if that connects
>
> see below for more comments
> On 5-Feb-08, at 8:17 AM, Brian Tomaszewski wrote:
>
> Guy,
>
> Thanks for the response. See below for clarifications:
>
> On Feb 5, 2008 1:05 AM, Guy Rouillier <guyr-ml1(at)burntmail(dot)com> wrote:
>
> > Brian Tomaszewski wrote:
> > > I am having trouble connecting to a psql database running on Debian
> > > GNU/Linux system
> > >
> > > The version of psql I am using in the system is 8.2.6.
> > >
> > > No matter what I do, I continually am getting the error:
> > >
> > > /Backend start-up failed: FATAL: database "RW_GEO" does not exist
> > >
> > > /when my JDBC component tries to connect using a URL like this:
> > >
> > > jdbc:postgresql://localhost:5432/RW_GEO
> > >
> > > from a tomcat app
> > >
> > > I have confirmed that the database RW_GEO does in fact exist as I can
> > > see/query tables from it from psql.
> > >
> > > Also, when I run my app on my development machine (windows), I can
> > > connect via tomcat with no problems to my local psql server.
> >
> > I'm trying to follow your runtime environment, but some pieces are
> > missing. When you say you can query the database running on Debian
> > using psql, is that psql running on your Windows box or on the Debian
> > box?
>
>
> I can run psql (the command line tool) on Debian and using the psql tool
> on Debian see/query the database that is always being reported as not
> existing when the app connects.
>
> On my Windows box, I use pgAdmin interface. I also develop the Java Code
> for the app on windows and then upload it to the server to run/tes. Also, I
> built the inital database on the windows box, and then uploaded and restored
> it to the debian postgres running there
>
>
>
>
> > I don't think this has anything to do with JDBC. The URL you show
> > above has "localhost" as the server for the DB. That's probably not
> > right, is it? I wouldn't think you'd have Tomcat running on your
> > database server.
>
>
> yes, we do have tomcat running on the database server (i.e the debian
> server), is that a bad thing?
>
> It's not good, since tomcat and postgresql both like memory. However you
> may not have a choice.
>
>
>
> My thought with using localhost on the debain is that is that is how the
> tomcat could easily connect
>
>
> So, run psql from whatever box is running Tomcat, and figure out how to
> > connect it to your DB server.
>
>
> I have done this on windows. Every thing for my app on windows is on the
> same box (tomcat, postgres etc). When I port the app up to the debian
> server, the connection fails
>
>
>
> > Once you've done that, you should be able
> > to just transfer the connection settings to JDBC. I'm anticipating once
> > you attempt to do that, you'll encounter a connection error. That's
> > because you need to update pg_hba.conf to allow access to your database
> > from remote hosts.
> >
>
>
> Ok, so is the real issue then having tomcat and postgres on the same
> server? Should they be physically separate? If they are not, what do you
> need to consider in terms of configuration
>
> No, it's no real issue, other than a resource sharing problem.
>
> Dave
>
> Thank you for your time
>
> Brian
>
>
> >
> > --
> > Guy Rouillier
> >
> > ---------------------------(end of broadcast)---------------------------
> > TIP 7: You can help support the PostgreSQL project by donating at
> >
> > http://www.postgresql.org/about/donate
> >
>
>
>


From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: Brian Tomaszewski <brianbanjo(at)gmail(dot)com>
Cc: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 15:39:06
Message-ID: F9AF71B0-A47B-49FB-A475-5A3A8FDDD5A2@fastcrypt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Brian,

So to be clear you are using jdbc:postgresql://localhost:5432/dbname

on both your windows box and your linux box.

Both machines have copies of the database locally ?

what does the output of psql -l show on the debian box, and is it
listening on a tcpip port ?

Dave
On 5-Feb-08, at 9:31 AM, Brian Tomaszewski wrote:

> Dave,
>
> Thanks for the quick reply.
>
> I am using java code like what you show to connect to postresql in
> my app
>
> And that's part of the weird thing - java connect code with postgres
> database on windows is fine, same java code trying to connect to to
> a postgres database on debian, can't connect or even see the
> database for that matter
>
> Could it be a driver version issue?
>
> Thanks again for your time
>
> Brian
>
>
>
> On Feb 5, 2008 8:47 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:
> Brian,
>
> I have no idea why you can't connect but I have comments about
> running tomcat and pg below
>
> write a very small program which attempts to connect outside of tomcat
>
> ie
>
> main
> class.forName("org.postgresql.Driver")
> Driver.getConnection(....
>
> and see if that connects
>
> see below for more comments
> On 5-Feb-08, at 8:17 AM, Brian Tomaszewski wrote:
>
>> Guy,
>>
>> Thanks for the response. See below for clarifications:
>>
>> On Feb 5, 2008 1:05 AM, Guy Rouillier <guyr-ml1(at)burntmail(dot)com> wrote:
>> Brian Tomaszewski wrote:
>> > I am having trouble connecting to a psql database running on
>> Debian
>> > GNU/Linux system
>> >
>> > The version of psql I am using in the system is 8.2.6.
>> >
>> > No matter what I do, I continually am getting the error:
>> >
>> > /Backend start-up failed: FATAL: database "RW_GEO" does not exist
>> >
>> > /when my JDBC component tries to connect using a URL like this:
>> >
>> > jdbc:postgresql://localhost:5432/RW_GEO
>> >
>> > from a tomcat app
>> >
>> > I have confirmed that the database RW_GEO does in fact exist as I
>> can
>> > see/query tables from it from psql.
>> >
>> > Also, when I run my app on my development machine (windows), I can
>> > connect via tomcat with no problems to my local psql server.
>>
>> I'm trying to follow your runtime environment, but some pieces are
>> missing. When you say you can query the database running on Debian
>> using psql, is that psql running on your Windows box or on the Debian
>> box?
>>
>> I can run psql (the command line tool) on Debian and using the psql
>> tool on Debian see/query the database that is always being reported
>> as not existing when the app connects.
>>
>> On my Windows box, I use pgAdmin interface. I also develop the Java
>> Code for the app on windows and then upload it to the server to run/
>> tes. Also, I built the inital database on the windows box, and then
>> uploaded and restored it to the debian postgres running there
>>
>>
>>
>> I don't think this has anything to do with JDBC. The URL you show
>> above has "localhost" as the server for the DB. That's probably not
>> right, is it? I wouldn't think you'd have Tomcat running on your
>> database server.
>>
>> yes, we do have tomcat running on the database server (i.e the
>> debian server), is that a bad thing?
> It's not good, since tomcat and postgresql both like memory. However
> you may not have a choice.
>
>>
>>
>> My thought with using localhost on the debain is that is that is
>> how the tomcat could easily connect
>>
>>
>> So, run psql from whatever box is running Tomcat, and figure out
>> how to
>> connect it to your DB server.
>>
>> I have done this on windows. Every thing for my app on windows is
>> on the same box (tomcat, postgres etc). When I port the app up to
>> the debian server, the connection fails
>>
>>
>> Once you've done that, you should be able
>> to just transfer the connection settings to JDBC. I'm anticipating
>> once
>> you attempt to do that, you'll encounter a connection error. That's
>> because you need to update pg_hba.conf to allow access to your
>> database
>> from remote hosts.
>>
>>
>> Ok, so is the real issue then having tomcat and postgres on the
>> same server? Should they be physically separate? If they are not,
>> what do you need to consider in terms of configuration
>>
> No, it's no real issue, other than a resource sharing problem.
>
> Dave
>
>> Thank you for your time
>>
>> Brian
>>
>>
>> --
>> Guy Rouillier
>>
>> ---------------------------(end of
>> broadcast)---------------------------
>> TIP 7: You can help support the PostgreSQL project by donating at
>>
>> http://www.postgresql.org/about/donate
>>
>
>


From: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
To: "Dave Cramer" <pg(at)fastcrypt(dot)com>
Cc: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 16:02:18
Message-ID: 4df751bf0802050802x1239b6d5s607127cbdbc0dd80@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Dave,

Thanks for the reply, answers below:

On Feb 5, 2008 10:39 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:

> Brian,
> So to be clear you are using jdbc:postgresql://localhost:5432/dbname
>
> on both your windows box and your linux box.
>

yes - it works on windows but not on linux. I even tried adding useSSL=true
to the connection string and that didn't make a difference

>
> Both machines have copies of the database locally ?
>

yes

>
> what does the output of psql -l show on the debian box,
>

List of databases
Name | Owner | Encoding
----------------+----------+----------
RW_GEO | postgres | UTF8
lowercase_test | postgres | UTF8
postgres | postgres | LATIN1
template0 | postgres | LATIN1
template1 | postgres | LATIN1
(5 rows)

and is it listening on a tcpip port ?
>

Does "it" refer to the postgres server? if so, how do I check that it is
listening on a TCPIP port? (sorry if this sounds trivial, I am relatively
new to postgres on linux)

Thanks!

Brian

>
> Dave
>
> On 5-Feb-08, at 9:31 AM, Brian Tomaszewski wrote:
>
> Dave,
>
> Thanks for the quick reply.
>
> I am using java code like what you show to connect to postresql in my app
>
> And that's part of the weird thing - java connect code with postgres
> database on windows is fine, same java code trying to connect to to a
> postgres database on debian, can't connect or even see the database for
> that matter
>
> Could it be a driver version issue?
>
> Thanks again for your time
>
> Brian
>
>
>
> On Feb 5, 2008 8:47 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:
>
> > Brian,
> > I have no idea why you can't connect but I have comments about running
> > tomcat and pg below
> >
> > write a very small program which attempts to connect outside of tomcat
> >
> > ie
> >
> > main
> > class.forName("org.postgresql.Driver")
> > Driver.getConnection(....
> >
> > and see if that connects
> >
> > see below for more comments
> > On 5-Feb-08, at 8:17 AM, Brian Tomaszewski wrote:
> >
> > Guy,
> >
> > Thanks for the response. See below for clarifications:
> >
> > On Feb 5, 2008 1:05 AM, Guy Rouillier <guyr-ml1(at)burntmail(dot)com> wrote:
> >
> > > Brian Tomaszewski wrote:
> > > > I am having trouble connecting to a psql database running on Debian
> > > > GNU/Linux system
> > > >
> > > > The version of psql I am using in the system is 8.2.6.
> > > >
> > > > No matter what I do, I continually am getting the error:
> > > >
> > > > /Backend start-up failed: FATAL: database "RW_GEO" does not exist
> > > >
> > > > /when my JDBC component tries to connect using a URL like this:
> > > >
> > > > jdbc:postgresql://localhost:5432/RW_GEO
> > > >
> > > > from a tomcat app
> > > >
> > > > I have confirmed that the database RW_GEO does in fact exist as I
> > > can
> > > > see/query tables from it from psql.
> > > >
> > > > Also, when I run my app on my development machine (windows), I can
> > > > connect via tomcat with no problems to my local psql server.
> > >
> > > I'm trying to follow your runtime environment, but some pieces are
> > > missing. When you say you can query the database running on Debian
> > > using psql, is that psql running on your Windows box or on the Debian
> > > box?
> >
> >
> > I can run psql (the command line tool) on Debian and using the psql tool
> > on Debian see/query the database that is always being reported as not
> > existing when the app connects.
> >
> > On my Windows box, I use pgAdmin interface. I also develop the Java Code
> > for the app on windows and then upload it to the server to run/tes. Also, I
> > built the inital database on the windows box, and then uploaded and restored
> > it to the debian postgres running there
> >
> >
> >
> >
> > > I don't think this has anything to do with JDBC. The URL you show
> > > above has "localhost" as the server for the DB. That's probably not
> > > right, is it? I wouldn't think you'd have Tomcat running on your
> > > database server.
> >
> >
> > yes, we do have tomcat running on the database server (i.e the debian
> > server), is that a bad thing?
> >
> > It's not good, since tomcat and postgresql both like memory. However you
> > may not have a choice.
> >
> >
> >
> > My thought with using localhost on the debain is that is that is how the
> > tomcat could easily connect
> >
> >
> > So, run psql from whatever box is running Tomcat, and figure out how to
> > > connect it to your DB server.
> >
> >
> > I have done this on windows. Every thing for my app on windows is on the
> > same box (tomcat, postgres etc). When I port the app up to the debian
> > server, the connection fails
> >
> >
> >
> > > Once you've done that, you should be able
> > > to just transfer the connection settings to JDBC. I'm anticipating
> > > once
> > > you attempt to do that, you'll encounter a connection error. That's
> > > because you need to update pg_hba.conf to allow access to your
> > > database
> > > from remote hosts.
> > >
> >
> >
> > Ok, so is the real issue then having tomcat and postgres on the same
> > server? Should they be physically separate? If they are not, what do you
> > need to consider in terms of configuration
> >
> > No, it's no real issue, other than a resource sharing problem.
> >
> > Dave
> >
> > Thank you for your time
> >
> > Brian
> >
> >
> > >
> > > --
> > > Guy Rouillier
> > >
> > > ---------------------------(end of
> > > broadcast)---------------------------
> > > TIP 7: You can help support the PostgreSQL project by donating at
> > >
> > > http://www.postgresql.org/about/donate
> > >
> >
> >
> >
>
>


From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: Brian Tomaszewski <brianbanjo(at)gmail(dot)com>
Cc: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 16:14:17
Message-ID: F221276A-F480-4668-8434-ADCD5B1394A8@fastcrypt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Brian,

So my guess is that you can connect to the lowercase_test database on
that machine.

if so, rename the RW_GEO to lower case. UPPER CASE really is an
impedance mismatch on postgresql ( in other words don't do it) .

Dave
On 5-Feb-08, at 11:02 AM, Brian Tomaszewski wrote:

> Dave,
>
> Thanks for the reply, answers below:
>
> On Feb 5, 2008 10:39 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:
> Brian,
>
> So to be clear you are using jdbc:postgresql://localhost:5432/dbname
>
> on both your windows box and your linux box.
>
> yes - it works on windows but not on linux. I even tried adding
> useSSL=true to the connection string and that didn't make a difference
>
> Both machines have copies of the database locally ?
>
> yes
>
>
> what does the output of psql -l show on the debian box,
>
> List of databases
> Name | Owner | Encoding
> ----------------+----------+----------
> RW_GEO | postgres | UTF8
> lowercase_test | postgres | UTF8
> postgres | postgres | LATIN1
> template0 | postgres | LATIN1
> template1 | postgres | LATIN1
> (5 rows)
>
>
> and is it listening on a tcpip port ?
>
>
> Does "it" refer to the postgres server? if so, how do I check that
> it is listening on a TCPIP port? (sorry if this sounds trivial, I am
> relatively new to postgres on linux)
>
> Thanks!
>
> Brian
>
>
>
> Dave
>
> On 5-Feb-08, at 9:31 AM, Brian Tomaszewski wrote:
>
>> Dave,
>>
>> Thanks for the quick reply.
>>
>> I am using java code like what you show to connect to postresql in
>> my app
>>
>> And that's part of the weird thing - java connect code with
>> postgres database on windows is fine, same java code trying to
>> connect to to a postgres database on debian, can't connect or even
>> see the database for that matter
>>
>> Could it be a driver version issue?
>>
>> Thanks again for your time
>>
>> Brian
>>
>>
>>
>> On Feb 5, 2008 8:47 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:
>> Brian,
>>
>> I have no idea why you can't connect but I have comments about
>> running tomcat and pg below
>>
>> write a very small program which attempts to connect outside of
>> tomcat
>>
>> ie
>>
>> main
>> class.forName("org.postgresql.Driver")
>> Driver.getConnection(....
>>
>> and see if that connects
>>
>> see below for more comments
>> On 5-Feb-08, at 8:17 AM, Brian Tomaszewski wrote:
>>
>>> Guy,
>>>
>>> Thanks for the response. See below for clarifications:
>>>
>>> On Feb 5, 2008 1:05 AM, Guy Rouillier <guyr-ml1(at)burntmail(dot)com>
>>> wrote:
>>> Brian Tomaszewski wrote:
>>> > I am having trouble connecting to a psql database running on
>>> Debian
>>> > GNU/Linux system
>>> >
>>> > The version of psql I am using in the system is 8.2.6.
>>> >
>>> > No matter what I do, I continually am getting the error:
>>> >
>>> > /Backend start-up failed: FATAL: database "RW_GEO" does not exist
>>> >
>>> > /when my JDBC component tries to connect using a URL like this:
>>> >
>>> > jdbc:postgresql://localhost:5432/RW_GEO
>>> >
>>> > from a tomcat app
>>> >
>>> > I have confirmed that the database RW_GEO does in fact exist as
>>> I can
>>> > see/query tables from it from psql.
>>> >
>>> > Also, when I run my app on my development machine (windows), I can
>>> > connect via tomcat with no problems to my local psql server.
>>>
>>> I'm trying to follow your runtime environment, but some pieces are
>>> missing. When you say you can query the database running on Debian
>>> using psql, is that psql running on your Windows box or on the
>>> Debian
>>> box?
>>>
>>> I can run psql (the command line tool) on Debian and using the
>>> psql tool on Debian see/query the database that is always being
>>> reported as not existing when the app connects.
>>>
>>> On my Windows box, I use pgAdmin interface. I also develop the
>>> Java Code for the app on windows and then upload it to the server
>>> to run/tes. Also, I built the inital database on the windows box,
>>> and then uploaded and restored it to the debian postgres running
>>> there
>>>
>>>
>>>
>>> I don't think this has anything to do with JDBC. The URL you show
>>> above has "localhost" as the server for the DB. That's probably not
>>> right, is it? I wouldn't think you'd have Tomcat running on your
>>> database server.
>>>
>>> yes, we do have tomcat running on the database server (i.e the
>>> debian server), is that a bad thing?
>> It's not good, since tomcat and postgresql both like memory.
>> However you may not have a choice.
>>
>>>
>>>
>>> My thought with using localhost on the debain is that is that is
>>> how the tomcat could easily connect
>>>
>>>
>>> So, run psql from whatever box is running Tomcat, and figure out
>>> how to
>>> connect it to your DB server.
>>>
>>> I have done this on windows. Every thing for my app on windows is
>>> on the same box (tomcat, postgres etc). When I port the app up to
>>> the debian server, the connection fails
>>>
>>>
>>> Once you've done that, you should be able
>>> to just transfer the connection settings to JDBC. I'm
>>> anticipating once
>>> you attempt to do that, you'll encounter a connection error. That's
>>> because you need to update pg_hba.conf to allow access to your
>>> database
>>> from remote hosts.
>>>
>>>
>>> Ok, so is the real issue then having tomcat and postgres on the
>>> same server? Should they be physically separate? If they are not,
>>> what do you need to consider in terms of configuration
>>>
>> No, it's no real issue, other than a resource sharing problem.
>>
>> Dave
>>
>>> Thank you for your time
>>>
>>> Brian
>>>
>>>
>>> --
>>> Guy Rouillier
>>>
>>> ---------------------------(end of
>>> broadcast)---------------------------
>>> TIP 7: You can help support the PostgreSQL project by donating at
>>>
>>> http://www.postgresql.org/about/donate
>>>
>>
>>
>
>


From: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
To: "Dave Cramer" <pg(at)fastcrypt(dot)com>
Cc: "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 16:25:38
Message-ID: 4df751bf0802050825k468b60f2g4c52aee8a6dbf2d8@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Hi Dave,

No, I can't connect to the lowercase_test database either.. I tried that
right after you recommended it, and same problem... (i.e can't find
database)

Thanks

Brian

On Feb 5, 2008 11:14 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:

> Brian,
> So my guess is that you can connect to the lowercase_test database on that
> machine.
>
> if so, rename the RW_GEO to lower case. UPPER CASE really is an impedance
> mismatch on postgresql ( in other words don't do it) .
>
> Dave
>
> On 5-Feb-08, at 11:02 AM, Brian Tomaszewski wrote:
>
> Dave,
>
> Thanks for the reply, answers below:
>
> On Feb 5, 2008 10:39 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:
>
> > Brian,
> > So to be clear you are using jdbc:postgresql://localhost:5432/dbname
> >
> > on both your windows box and your linux box.
> >
>
> yes - it works on windows but not on linux. I even tried adding
> useSSL=true to the connection string and that didn't make a difference
>
> >
> > Both machines have copies of the database locally ?
> >
>
> yes
>
>
> >
> > what does the output of psql -l show on the debian box,
> >
>
> List of databases
> Name | Owner | Encoding
> ----------------+----------+----------
> RW_GEO | postgres | UTF8
> lowercase_test | postgres | UTF8
> postgres | postgres | LATIN1
> template0 | postgres | LATIN1
> template1 | postgres | LATIN1
> (5 rows)
>
>
> and is it listening on a tcpip port ?
> >
>
>
> Does "it" refer to the postgres server? if so, how do I check that it is
> listening on a TCPIP port? (sorry if this sounds trivial, I am relatively
> new to postgres on linux)
>
> Thanks!
>
> Brian
>
>
>
> >
> > Dave
> >
> > On 5-Feb-08, at 9:31 AM, Brian Tomaszewski wrote:
> >
> > Dave,
> >
> > Thanks for the quick reply.
> >
> > I am using java code like what you show to connect to postresql in my
> > app
> >
> > And that's part of the weird thing - java connect code with postgres
> > database on windows is fine, same java code trying to connect to to a
> > postgres database on debian, can't connect or even see the database for
> > that matter
> >
> > Could it be a driver version issue?
> >
> > Thanks again for your time
> >
> > Brian
> >
> >
> >
> > On Feb 5, 2008 8:47 AM, Dave Cramer <pg(at)fastcrypt(dot)com> wrote:
> >
> > > Brian,
> > > I have no idea why you can't connect but I have comments about running
> > > tomcat and pg below
> > >
> > > write a very small program which attempts to connect outside of tomcat
> > >
> > > ie
> > >
> > > main
> > > class.forName("org.postgresql.Driver")
> > > Driver.getConnection(....
> > >
> > > and see if that connects
> > >
> > > see below for more comments
> > > On 5-Feb-08, at 8:17 AM, Brian Tomaszewski wrote:
> > >
> > > Guy,
> > >
> > > Thanks for the response. See below for clarifications:
> > >
> > > On Feb 5, 2008 1:05 AM, Guy Rouillier <guyr-ml1(at)burntmail(dot)com> wrote:
> > >
> > > > Brian Tomaszewski wrote:
> > > > > I am having trouble connecting to a psql database running on
> > > > Debian
> > > > > GNU/Linux system
> > > > >
> > > > > The version of psql I am using in the system is 8.2.6.
> > > > >
> > > > > No matter what I do, I continually am getting the error:
> > > > >
> > > > > /Backend start-up failed: FATAL: database "RW_GEO" does not exist
> > > > >
> > > > > /when my JDBC component tries to connect using a URL like this:
> > > > >
> > > > > jdbc:postgresql://localhost:5432/RW_GEO
> > > > >
> > > > > from a tomcat app
> > > > >
> > > > > I have confirmed that the database RW_GEO does in fact exist as I
> > > > can
> > > > > see/query tables from it from psql.
> > > > >
> > > > > Also, when I run my app on my development machine (windows), I can
> > > > > connect via tomcat with no problems to my local psql server.
> > > >
> > > > I'm trying to follow your runtime environment, but some pieces are
> > > > missing. When you say you can query the database running on Debian
> > > > using psql, is that psql running on your Windows box or on the
> > > > Debian
> > > > box?
> > >
> > >
> > > I can run psql (the command line tool) on Debian and using the psql
> > > tool on Debian see/query the database that is always being reported as not
> > > existing when the app connects.
> > >
> > > On my Windows box, I use pgAdmin interface. I also develop the Java
> > > Code for the app on windows and then upload it to the server to run/tes.
> > > Also, I built the inital database on the windows box, and then uploaded and
> > > restored it to the debian postgres running there
> > >
> > >
> > >
> > >
> > > > I don't think this has anything to do with JDBC. The URL you show
> > > > above has "localhost" as the server for the DB. That's probably not
> > > > right, is it? I wouldn't think you'd have Tomcat running on your
> > > > database server.
> > >
> > >
> > > yes, we do have tomcat running on the database server (i.e the debian
> > > server), is that a bad thing?
> > >
> > > It's not good, since tomcat and postgresql both like memory. However
> > > you may not have a choice.
> > >
> > >
> > >
> > > My thought with using localhost on the debain is that is that is how
> > > the tomcat could easily connect
> > >
> > >
> > > So, run psql from whatever box is running Tomcat, and figure out how
> > > > to
> > > > connect it to your DB server.
> > >
> > >
> > > I have done this on windows. Every thing for my app on windows is on
> > > the same box (tomcat, postgres etc). When I port the app up to the debian
> > > server, the connection fails
> > >
> > >
> > >
> > > > Once you've done that, you should be able
> > > > to just transfer the connection settings to JDBC. I'm anticipating
> > > > once
> > > > you attempt to do that, you'll encounter a connection error. That's
> > > > because you need to update pg_hba.conf to allow access to your
> > > > database
> > > > from remote hosts.
> > > >
> > >
> > >
> > > Ok, so is the real issue then having tomcat and postgres on the same
> > > server? Should they be physically separate? If they are not, what do you
> > > need to consider in terms of configuration
> > >
> > > No, it's no real issue, other than a resource sharing problem.
> > >
> > > Dave
> > >
> > > Thank you for your time
> > >
> > > Brian
> > >
> > >
> > > >
> > > > --
> > > > Guy Rouillier
> > > >
> > > > ---------------------------(end of
> > > > broadcast)---------------------------
> > > > TIP 7: You can help support the PostgreSQL project by donating at
> > > >
> > > > http://www.postgresql.org/about/donate
> > > >
> > >
> > >
> > >
> >
> >
>
>


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
Cc: "Dave Cramer" <pg(at)fastcrypt(dot)com>, "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 17:27:46
Message-ID: 23514.1202232466@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

"Brian Tomaszewski" <brianbanjo(at)gmail(dot)com> writes:
> Does "it" refer to the postgres server? if so, how do I check that it is
> listening on a TCPIP port? (sorry if this sounds trivial, I am relatively
> new to postgres on linux)

try psql -h localhost -l

regards, tom lane


From: "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: "Dave Cramer" <pg(at)fastcrypt(dot)com>, "Guy Rouillier" <guyr-ml1(at)burntmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: JDBC connection problem
Date: 2008-02-05 21:21:50
Message-ID: 4df751bf0802051321l9ce663dm18590c9c7409fb9c@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

All,

Thanks for the time and tips. Turned out to be a really stupid error - there
was on old version of postres on the server that had taken port 5432, and my
app was trying to connect to it (hence why the database wasn't being found),
when it should have been connecting to the correct, newer instance of
postres

I found this out by doing this command as Tom recommended:

$ psql -h localhost -l
psql: could not connect to server: Connection refused
Is the server running on host "localhost" and accepting
TCP/IP connections on port 5433?

And noticing the 5433...

A colleague of mine also noticed the multiple ports, and we now have things
cleared up.

Thanks again everyone for the replies/comments

Brian

On Feb 5, 2008 12:27 PM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:

> "Brian Tomaszewski" <brianbanjo(at)gmail(dot)com> writes:
> > Does "it" refer to the postgres server? if so, how do I check that it is
> > listening on a TCPIP port? (sorry if this sounds trivial, I am
> relatively
> > new to postgres on linux)
>
> try psql -h localhost -l
>
> regards, tom lane
>