Re: Problems after instaling PostgreSQL 7.0

From: Craig Johannsen <cjohan(at)home(dot)com>
To: "J(dot) Mauricio Cuenca H(dot)" <mcuenca(at)Telesat(dot)com(dot)co>
Cc: PostgreSQL List <pgsql-general(at)hub(dot)org>
Subject: Re: Problems after instaling PostgreSQL 7.0
Date: 2000-08-16 21:11:33
Message-ID: 399B0384.3EDAFBA8@home.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Use the createdb program to create a database. For example,
./createdb testdb

Then, run psql specifying the testdb database. For example,
./psql testdb

Once you are successfully running psql, you can define new users
with the CREATE USER statement.. For example,
create user mauricio

Any such user can then log on under their own user ID and run
./psql testdb

You can use the GRANT statement to grant other users access to tables.

"J. Mauricio Cuenca H." wrote:

> Craig,
>
> Thank you very much for your help, this solved my problem, but now, when I
> try to run "psql" I get the following:
> [postgres(at)x ~/bin]$ ./psql
> psql: FATAL 1: Database "postgres" does not exist in the system catalog.
>
> What could be now?
>
> J. Mauricio Cuenca H.
> mcuenca(at)Telesat(dot)com(dot)co
>
> ----- Original Message -----
> From: "Craig Johannsen" <cjohan(at)home(dot)com>
> To: "J. Mauricio Cuenca H." <mcuenca(at)Telesat(dot)com(dot)co>
> Cc: "PostgreSQL List" <pgsql-general(at)hub(dot)org>
> Sent: Wednesday, August 16, 2000 1:10 PM
> Subject: Re: [GENERAL] Problems after instaling PostgreSQL 7.0
>
> > Try setting the LD_LIBRARY_PATH environment variable. For example, in
> Linux:
> > export LD_LIBRARY_PATH=/usr/local/pgsql/lib
> >

====================================
Craig Johannsen
Critical Path Consulting, Inc.
604-762-1514
http://members.home.net/cjohan/cpath
====================================

In response to

Browse pgsql-general by date

  From Date Subject
Next Message brianb-pggeneral 2000-08-16 21:27:04 Re: rebuilding a table from a datafile
Previous Message J. Mauricio Cuenca H. 2000-08-16 20:56:50 Re: Problems after instaling PostgreSQL 7.0