dbTalk Databases Forums  

Re: free database for Mac OS X?

comp.databases.postgresql comp.databases.postgresql


Discuss Re: free database for Mac OS X? in the comp.databases.postgresql forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
justaguy
 
Posts: n/a

Default Re: free database for Mac OS X? - 11-25-2011 , 09:08 PM






On Nov 25, 7:54*pm, Matt <hfr... (AT) syrius (DOT) org.invalid> wrote:
Quote:
On Sam 26 novembre 2011, 00:42,

justaguy <do... (AT) yahoo (DOT) com> wrote:
Thanks Matt, yes, it appears that PostgreSQL is a desirable option
now, not sure about how easy or difficult it is to install and
configure and run on various Mac OS X computers...

I can't tell you such a thing (i'm using a postgresql packaged by an
accounting software) but after a quick look on the postgresql website
there's a Mac OS X installer there[1] which would be simpler than
compiling the sources if you're not familiar with the Xcode/devtools
thingies.

Btw, is it able to import / migrate an Access db?

According to Postgresql's wiki there are some solutions[2].

Best,

[1] <http://www.postgresql.org/download/macosx
[2] <http://wiki.postgresql.org/wiki/Conv...atabases_to_Po...

PS. i'm crossposting to comp.databases.postgresql and
comp.sys.mac.system and set the followup to comp.databases.postgresql
as those are english spoken newsgroups and your question is more
postgresql related.

PPS. grab a *real* newsreader for Usenet; Google's interface really
s*cks

--
echo 'hfr... (AT) flevhf (DOT) bet' | \
tr '[a-z]' '[n-za-m]'
Thanks for the idea of postgresql, bad experience. It took 10+
minutes to install to Windows 7 (prompted with fatal error) and yet
completed installation successfully. It won't start the server.
Rebooted, yes, it started the server, however, the pgAdmin III (mgr
tool) failed to connect to it. Don't know what's going on here...

Reply With Quote
  #2  
Old   
Mladen Gogala
 
Posts: n/a

Default Re: free database for Mac OS X? - 11-27-2011 , 11:33 AM






On Fri, 25 Nov 2011 19:08:07 -0800, justaguy wrote:

Quote:
Thanks for the idea of postgresql, bad experience. It took 10+ minutes
to install to Windows 7 (prompted with fatal error) and yet completed
installation successfully. It won't start the server. Rebooted, yes, it
started the server, however, the pgAdmin III (mgr tool) failed to
connect to it. Don't know what's going on here...
Probably the listener parameter in postgresql.conf. You need to set it to
'*' and restart the service.



--
http://mgogala.byethost5.com

Reply With Quote
  #3  
Old   
HoneyMonster
 
Posts: n/a

Default Re: free database for Mac OS X? - 11-27-2011 , 01:43 PM



On Sun, 27 Nov 2011 17:33:28 +0000, Mladen Gogala wrote:

Quote:
On Fri, 25 Nov 2011 19:08:07 -0800, justaguy wrote:

Thanks for the idea of postgresql, bad experience. It took 10+ minutes
to install to Windows 7 (prompted with fatal error) and yet completed
installation successfully. It won't start the server. Rebooted, yes,
it started the server, however, the pgAdmin III (mgr tool) failed to
connect to it. Don't know what's going on here...

Probably the listener parameter in postgresql.conf. You need to set it
to '*' and restart the service.
Mladen,

I think you mean listen_addresses. But you are joking about *, aren't you?

Reply With Quote
  #4  
Old   
Mladen Gogala
 
Posts: n/a

Default Re: free database for Mac OS X? - 11-27-2011 , 06:00 PM



On Sun, 27 Nov 2011 19:43:14 +0000, HoneyMonster wrote:

Quote:
On Sun, 27 Nov 2011 17:33:28 +0000, Mladen Gogala wrote:

On Fri, 25 Nov 2011 19:08:07 -0800, justaguy wrote:

Thanks for the idea of postgresql, bad experience. It took 10+
minutes to install to Windows 7 (prompted with fatal error) and yet
completed installation successfully. It won't start the server.
Rebooted, yes, it started the server, however, the pgAdmin III (mgr
tool) failed to connect to it. Don't know what's going on here...

Probably the listener parameter in postgresql.conf. You need to set it
to '*' and restart the service.

Mladen,

I think you mean listen_addresses. But you are joking about *, aren't
you?
No, I am not joking. That directs Postgres to listen on all available
addresses. This is what I have in my postgresql.conf:

listen_addresses = '*'
#listen_addresses = 'localhost' # what IP address(es) to listen
on;
# comma-separated list of
addresses;
# defaults to 'localhost', '*' =
all
# (change requires restart)
#port = 5432 # (change requires restart)
max_connections = 100 # (change requires restart)


It works well, I don't see any problems with that setting.

--
http://mgogala.byethost5.com

Reply With Quote
  #5  
Old   
Laurenz Albe
 
Posts: n/a

Default Re: free database for Mac OS X? - 11-28-2011 , 02:41 AM



Mladen Gogala wrote:
Quote:
Thanks for the idea of postgresql, bad experience. It took 10+ minutes
to install to Windows 7 (prompted with fatal error) and yet completed
installation successfully. It won't start the server. Rebooted, yes, it
started the server, however, the pgAdmin III (mgr tool) failed to
connect to it. Don't know what's going on here...

Probably the listener parameter in postgresql.conf. You need to set it to
'*' and restart the service.
I don't know about Windows, but the default setting should allow local
connections (although OP didn't tell us whether it was a local connection
or not).

Maybe if we see the relevant parts of postgresql.conf and pg_hba.conf,
know what was entered into pgAdmin III and what the error message was,
we could do more than just guess.

Yours,
Laurenz Albe

Reply With Quote
  #6  
Old   
Mladen Gogala
 
Posts: n/a

Default Re: free database for Mac OS X? - 12-01-2011 , 03:53 PM



On Mon, 28 Nov 2011 09:41:12 +0100, Laurenz Albe wrote:

Quote:
I don't know about Windows, but the default setting should allow local
connections (although OP didn't tell us whether it was a local
connection or not).
PgAdmin usually requires the user to add host. That means it's a TCP
connection, even if the host is defined as localhost. I've hit that,
although not on Windows. I don't run databases on Windows.



--
http://mgogala.byethost5.com

Reply With Quote
  #7  
Old   
Laurenz Albe
 
Posts: n/a

Default Re: free database for Mac OS X? - 12-02-2011 , 02:40 AM



Mladen Gogala wrote:
Quote:
On Mon, 28 Nov 2011 09:41:12 +0100, Laurenz Albe wrote:

I don't know about Windows, but the default setting should allow local
connections (although OP didn't tell us whether it was a local
connection or not).

PgAdmin usually requires the user to add host. That means it's a TCP
connection, even if the host is defined as localhost. I've hit that,
although not on Windows. I don't run databases on Windows.
Yes, but the default setting allows localhost (TCP) connections:

$ grep listen_addresses /postgres/cvs/dbhome/postgresql.conf
#listen_addresses = 'localhost' # what IP address(es) to listen on;

$ /postgres/cvs/pg92/bin/pg_ctl start -D /postgres/cvs/dbhome
server starting

$ /postgres/cvs/pg92/bin/psql -h localhost -p 5432 -U postgres -d postgres
psql (9.2devel)
Type "help" for help.

postgres=# SHOW listen_addresses;
listen_addresses
------------------
localhost
(1 row)

Yours,
Laurenz Albe

Reply With Quote
Reply




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.