Re: Newbie: problem Connecting to Server

From: "Tamir Halperin" <tamir(at)brobus(dot)net>
To: "alex b(dot)" <mailinglists1(at)gmx(dot)de>, "Frustrated Beginner" <nowweare(at)access4cheap(dot)com>
Cc: "Postgresql General" <pgsql-general(at)postgresql(dot)org>, "Jonas Hoge" <Schmass(at)gmx(dot)net>
Subject: Re: Newbie: problem Connecting to Server
Date: 2003-04-04 04:12:58
Message-ID: 985DF46E87E0C047A3670048DBCAD0556C28@andrew.brobus.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Looks like no one has corrected you, alex, so, as it pertains to redhat, a user of which I am not, you may have directed Frustrated correctly.

I just wanted to add to the comment below about "option -i" that the postgresql.conf file has a setting in it, "tcpip_socket" which can be set to the value true after being uncommented. That way you won't have to specify the option if you restart the PostgreSQL manually.

> -----Original Message-----
> From: alex b. [mailto:mailinglists1(at)gmx(dot)de]
> Sent: Thursday, April 03, 2003 3:42 PM
> To: Frustrated Beginner
> Cc: Postgresql General; Jonas Hoge
> Subject: Re: [GENERAL] Newbie: problem Connecting to Server
>
>
> Frustrated Beginner wrote:
> > I am having this exact same problem. Any help would be
> greatly appreciated.
> > Thank you.
> >
> >
> >
> > "Ferindo Middleton Jr" <ferindo(dot)middleton(at)verizon(dot)net>
> wrote in message
> > news:pan(dot)2003(dot)03(dot)31(dot)01(dot)23(dot)34(dot)434512(at)verizon(dot)net(dot)(dot)(dot)
> >
> >>I'm running Redhat Linux 8. I have registration to the
> Redhat Network so
> >>I'm probably running the latest version of postgre sql
> available. I also
> >>have Redhat Databse v2.1 installed, but whenever I try to
> start a session,
> >>I get the following error message:
> >>
> >>psql: 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"?
> >>
> >>Please help me configure my system so that I can connect
> and begin to use
> >>postgresql.
>
>
> you guys first have to create a POSTGRESQL USER, under which the
> server will run...
>
> in other words: the server (postmaster) must be running, which it is
> not, apparently.
>
> /tmp/.s.PGSQL.5432
> is a unix socket, to which the client connects. the postgresql-server
> creates that socket itself.
> since you guys are running redhat, you should be able to set
> the scripts
> to started at boot time in different runlevels (runlevel editor) and
> select postgresql to be started... as root as a matter of course.
>
>
>
> if none of that works, then try the following as root:
>
> first uninstall the postgresql, download the kernelheaders to your
> current kernel, download the current postgresql-sources
> (7.3.2), compile
> that, and install (make install - as root)
>
> follow these directions (all as root):
> - create the user "postgres" belonging to group "daemon"
> - mkdir /usr/local/pgsql/logs
> - mkdir /usr/local/pgsql/data
> - chmod 700 /usr/local/pgsql/data
> - echo "/usr/local/pgsql/lib" >> /etc/ld.so.conf
> - ldconfig
> - chown -R postgres:daemon /usr/local/pgsql
> - su postgres -c '/usr/local/pgsql/bin/initdb -D
> /usr/local/pgsql/data'
> - su postgres -c '/usr/local/pgsql/bin/postmaster -D
> /usr/local/pgsql/data >> /usr/local/pgsql/logs/server.log 2>&1' &
> (all in one line)
>
> and you're done, you may now create a new and fresh database,
> just like
> this:
>
> - su postgres -c '/usr/local/pgsql/bin/createdb <databasename>'
>
> notice that "su postgres .." command... it is because postmaster (the
> server binary) likes to be started as a user and not as root,
> since that
> would be a dangerous act. all programs can be exploited and
> evil, evil
> badboys could gain root privileges and destroy the whole world...
> postgresql simply won't start as root - security issues.
>
>
>
>
> ANYONE: please correct me, if I'm wrong!!!!! it is important, so I or
> them won't mess up their systems..
>
>
>
> cheers,
> alex
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Lamar Owen 2003-04-04 04:20:13 Re: Converting from dbase
Previous Message Tamir Halperin 2003-04-04 04:06:10 Re: Rules, Triggers something more challenging