Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old November 23rd, 2005, 02:22 AM
Steve Gollery
Guest
 
Posts: n/a
Default problem getting started with PostgreSQL 8 beta 3 on XP

I installed Postgres 8 beta 3 on an XP box, with Postgres running as a
service. TaskManager tells me that postgres and postmaster are both
running. Using pgAdmin III, I can connect to the server and create
users, databases, tables, etc.

But at the command line, on the same machine where the service is
running, executing

createdb mydb

gives this:

could not connect to database template1: could not connect to server:
No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?

The documentation says:

"This means that the server was not started, or it was not started where
createdb expected it."

Since pgAdmin has no trouble connecting, I assume that the server is
running and receiving connections at port 5432, so that leaves the
second part: not started where createdb expected it.

I've tried explicitly including the host, port, user, password, and that
doesn't help.

Any ideas what's going wrong here?

Steven Gollery
sgollery@cadrc.calpoly.edu

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

  #2  
Old November 23rd, 2005, 02:23 AM
Tom Lane
Guest
 
Posts: n/a
Default Re: problem getting started with PostgreSQL 8 beta 3 on XP

Steve Gollery <sgollery@cadrc.calpoly.edu> writes:[color=blue]
> I installed Postgres 8 beta 3 on an XP box, with Postgres running as a
> service. TaskManager tells me that postgres and postmaster are both
> running. Using pgAdmin III, I can connect to the server and create
> users, databases, tables, etc.
>
> But at the command line, on the same machine where the service is
> running, executing
> createdb mydb
> gives this:
>
> could not connect to database template1: could not connect to server:
> No such file or directory
> Is the server running locally and accepting
> connections on Unix domain socket "/tmp/.s.PGSQL.5432"?[/color]

Steve: try
createdb -h localhost mydb

Pghackers: I'm surprised that we don't have libpq set to default to
"localhost" rather than a Unix socket on platforms that haven't got Unix
sockets. A default that's guaranteed not to work seems a bit useless.

Anyone have a better idea than "localhost"?

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org

  #3  
Old November 23rd, 2005, 02:23 AM
Steve Gollery
Guest
 
Posts: n/a
Default Re: problem getting started with PostgreSQL 8 beta 3 on

Tom,

False alarm -- I just realized that I was picking up the createdb from
an earlier failed attempt to install 7.4.5. Removing that got me to the
right command and all is well.

Thanks for the help.

Steve


Tom Lane wrote:[color=blue]
> Steve Gollery <sgollery@cadrc.calpoly.edu> writes:
>[color=green]
>>I installed Postgres 8 beta 3 on an XP box, with Postgres running as a
>>service. TaskManager tells me that postgres and postmaster are both
>>running. Using pgAdmin III, I can connect to the server and create
>>users, databases, tables, etc.
>>
>>But at the command line, on the same machine where the service is
>>running, executing
>> createdb mydb
>>gives this:
>>
>>could not connect to database template1: could not connect to server:
>>No such file or directory
>> Is the server running locally and accepting
>> connections on Unix domain socket "/tmp/.s.PGSQL.5432"?[/color]
>
>
> Steve: try
> createdb -h localhost mydb
>
> Pghackers: I'm surprised that we don't have libpq set to default to
> "localhost" rather than a Unix socket on platforms that haven't got Unix
> sockets. A default that's guaranteed not to work seems a bit useless.
>
> Anyone have a better idea than "localhost"?
>
> regards, tom lane[/color]

---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend

 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles