Re: [ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off

2006-09-26 Thread Jeanna Geier
ent: Tuesday, September 26, 2006 10:31 AM Subject: Re: [ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off "Juan Miguel Paredes" <[EMAIL PROTECTED]> writes: Maybe an stack-trace of your error, when trying the ssl connection could be useful. Also, as noted in

Re: [ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off

2006-09-26 Thread Juan Miguel Paredes
On 9/26/06, Jeanna Geier <[EMAIL PROTECTED]> wrote: Hi and thanks so much for the replies!! I had perused that doc and google prior to posting and didn't have any luck; what I tried was the following: added: private static final String DB_SSL_STATUS = "true"; & prop.setProperty("ssl", DB_SSL_ST

Re: [ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off

2006-09-26 Thread Tom Lane
"Juan Miguel Paredes" <[EMAIL PROTECTED]> writes: > Maybe an stack-trace of your error, when trying the ssl connection > could be useful. Also, as noted in > http://jdbc.postgresql.org/documentation/80/ssl-client.html > perhaps other jdbc client configuration is missing or not available on > your e

Re: [ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off

2006-09-26 Thread Jeanna Geier
n = DriverManager.getConnection(url, prop); and I'm getting an error message that says: "The connection attempt failed." Any other ideas? Much thanks, as always. -Jeanna ----- Original Message - From: "Juan Miguel Paredes" <[EMAIL PROTECTED]> To: "Jeanna

[ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off

2006-09-26 Thread Jeanna Geier
Hi All- I am hoping for some help on this one... we are in the process of implementing our program with SSL enabled on the Postgres side of things. I can start and connect to the database from the command line ok using my current configuration: C:\msys\1.0\local\pgsql\bin>psql -d apt -U p

Re: [ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off

2006-09-26 Thread Juan Miguel Paredes
On 9/26/06, Jeanna Geier <[EMAIL PROTECTED]> wrote: Hi All- I am hoping for some help on this one... we are in the process of implementing our program with SSL enabled on the Postgres side of things. I can start and connect to the database from the command line ok using my current configuratio

Re: [ADMIN] Beginner's Question: No pg_hba.conf entry for host...SSL Off

2006-09-26 Thread Milen A. Radev
Jeanna Geier написа: [...] > >//prop.setProperty("user","postgres"); >//prop.setProperty("password", ""); >prop.setProperty("user", DB_USER); >prop.setProperty("password", DB_PASSWORD); props.setProperty("ssl","true"); ? > >connec