Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

by running this command

ps auxwww | grep postgres

i see that postgres is not running

> ps auxwww | grep postgres
remcat          1789   0.0  0.0  2434892    480 s000  R+   11:28PM   0:00.00 grep postgres

this raises the question: How do I start the postgresql server?

update:

>pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
server starting
sh: /usr/local/var/postgres/server.log: No such file or directory

update2:

The touch was not successful so I did this instead:

> mkdir /usr/local/var/postgres
> vi /usr/local/var/postgres/server.log
> ls /usr/local/var/postgres/          
server.log

but when i try to start rails server, i still see this:

Is the server running on host "localhost" and accepting
TCP/IP connections on port 5432?

update3:

> pg_ctl -D /usr/local/var/postgres status
pg_ctl: no server running

update4:

I found that there WAS NO pg_hba.conf (only pg_hba.conf.sample) so I modified the sample and renamed it (to remover the .sample). here are the contents:

 # IPv4 local connections:
 host    all             all             127.0.0.1/32           trust
 # IPv6 local connections:
 host    all             all             ::1/128                trust

but i don't understand this:

> pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start     
server starting
> pg_ctl -D /usr/local/var/postgres status                                     
pg_ctl: no server running

also:

sudo find / -name postgresql.conf
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory

update5:

sudo pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
Password:
pg_ctl: cannot be run as root
Please log in (using, e.g., "su") as the (unprivileged) user that will own the server process.

update6:

this seems odd:

> egrep 'listen|port' /usr/local/var/postgres/postgresql.conf
egrep: /usr/local/var/postgres/postgresql.conf: No such file or directory

though, i did do this:

>sudo find / -name "*postgresql.conf*"
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory
/usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample
/usr/share/postgresql/postgresql.conf.sample

so I did this:

egrep 'listen|port' /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample 
#listen_addresses = 'localhost'     # what IP address(es) to listen on;
#port = 5432                # (change requires restart)
                # supported by the operating system:
                #   %r = remote host and port

so I tried this:

> cp /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf        
> cp /usr/share/postgresql/postgresql.conf.sample /usr/share/postgresql/postgresql.conf 

still getting the same "Is the server running?" message....

FINAL UPDATE:

I forgot to run the initdb command....

share|improve this question
How did you install Postgres? Did you use a package manager or a manual installation? – JamesA Nov 2 '11 at 13:08
can't remember exactly but it was either installed already or i ran "brew install postgres". I'd lean towards the latter but again, i'm not 100% certain. – Ramy Nov 2 '11 at 13:19
definitely not manual though – Ramy Nov 2 '11 at 13:19
Use sudo, ie sudo pg_ctl... – Bohemian Nov 4 '11 at 2:42
3  
I up-voted this just because the FINAL UPDATE made me laugh very hard! :D – pkoch May 10 at 0:53
show 5 more comments

6 Answers

up vote 134 down vote accepted
+50

The Homebrew package manager includes launchctl plists to start automatically. For more information run brew info postgres.

Start manually:

pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

Stop manually:

pg_ctl -D /usr/local/var/postgres stop -s -m fast


What is the result of pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start?

What is the result of pg_ctl -D /usr/local/var/postgres status?

Are there any error messages in the server.log?

Make sure tcp localhost connections are enabled in pg_hba.conf:

# IPv4 local connections:
host    all             all             127.0.0.1/32            trust

Check the listen_addresses and port in postgresql.conf:

egrep 'listen|port' /usr/local/var/postgres/postgresql.conf

#listen_addresses = 'localhost'     # what IP address(es) to listen on;
#port = 5432                # (change requires restart)

Cleaning up

Postgres was most likely installed via Homebrew, Fink, MacPorts or the EnterpriseDB installer.

Check the output of the following commands to determine which package manager it was installed with:

brew && brew list|grep postgres
fink && fink list|grep postgres
port && port installed|grep postgres
share|improve this answer
thanks, @JamesA. please see my update. – Ramy Nov 2 '11 at 3:58
i tried to 'touch /usr/local/var/postgres/server.log'. no luck though – Ramy Nov 2 '11 at 3:58
@Ramy Did the touch succeed? Check the existence and permissions of /usr/local/var/postgres and server.log. It should be rw for your userid. – JamesA Nov 2 '11 at 4:04
please see my update2 – Ramy Nov 2 '11 at 12:35
thank you very much for all the help so far. sorry I didn't have time tow ork on this today so i had to leave you hanging for a bit. i'd appreciate it if you could look at my latest update. thanks! – Ramy Nov 4 '11 at 2:33
show 5 more comments

I had almost the exact same issue, and you cited the initdb command as being the fix. This was also the solution for me, but I didn't see that anyone posted it here, so for those who are looking for it:

initdb /usr/local/var/postgres -E utf8
share|improve this answer
This worked wonders, thanks! – Andre Malan Nov 28 '12 at 19:16
excellent thanks – nicolas Dec 13 '12 at 16:59
2  
this worked for me also, initdb told me that I had already the config done, so I deleted the entire directory: "rm -rf /usr/local/var/postgres" ran again your command and my server now gets up and running, many thanks sir! – Jorge Sampayo Jan 13 at 17:57
1  
this should be the answer ;) – Vdt Jan 13 at 19:55
this worked for me! After an hour of searching...sooo simple – user1502223 Feb 20 at 0:11

For test purposes, i think PostgreSQL App is the best option!

Run an App, and the server is up and running. Close the App, and the server goes down.

http://postgresapp.com/

share|improve this answer
good call.... it's like XAMPP or MAPP... but just a standlone P instead ;-) – Brad Parks Apr 30 at 12:50

Another approach is using lunchy gem.

gem install lunchy

To start postgres:

lunchy start postgres

To stop postgres:

lunchy stop postgres

For further info refer to: how-to-install-postgresql-on-a-mac-with-homebrew-and-lunchy

share|improve this answer

Here my 2 cents: I made a alias for postgres pg_ctl and put it in .bash_profile(my postgresql version is 9.2.4, and database path is /Library/PostgreSQL/9.2/data).

alias postgres.server="sudo -u postgres pg_ctl -D/Library/PostgreSQL/9.2/data"

Launch new terminal.

And then? You can start/stop your postgresql server with this:

postgres.server start
postgres.server stop
share|improve this answer

PostgreSQL is integrated in Server.app available through the App Store in Mountain Lion. That means that it is already configured, and you only need to launch it, and then create users and databases.

Tip: Do not start with defining $PGDATA and so on, take file locations as is.

You would have this file: /Library/Server/PostgreSQL/Config/org.postgresql.postgres.plist

To start:

sudo serveradmin start postgres

Process started with arguments:

/Applications/Server.app/Contents/ServerRoot/usr/bin/postgres_real -D /Library/Server/PostgreSQL/Data -c listen_addresses=127.0.0.1,::1 -c log_connections=on -c log_directory=/Library/Logs/PostgreSQL -c log_filename=PostgreSQL.log -c log_line_prefix=%t -c log_lock_waits=on -c log_statement=ddl -c logging_collector=on -c unix_socket_directory=/private/var/pgsql_socket -c unix_socket_group=_postgres -c unix_socket_permissions=0770

You can sudo:

sudo -u _postgres psql template1

Or connect:

psql -h localhost -U _postgres postgres
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.