[FGS] [MS4W-Users] Postgres error with FGS-Ubuntu
Normand Savard
nsavard at mapgears.com
Thu Feb 4 11:20:21 EST 2010
Fernando Sánchez García wrote:
> (apache-php-mapserver-chameleon-postgresql). After installing
> everything and the pgadmin3 have a problem is that when running from a
> terminal window: sudo su postgres "user to connect to postgres and the
> password change after I get the following error:" Can not execute /
> sbin / nologin: No such file or directory ". I need to change your
> password because I do not know and adding a connection to the server
> on pgadmin asks me. Please someone I might lend a hand.
>
Fernando,
First thing you post your message to the wrong list. You should have
post to the FGS list: fgs-list <foss-gis-suite at lists.maptools.org>
There is no password set by defaut when install Postgresql-server from
FGS. You can add one when you create you db. Here are the correct
steps to create a DB within FGS.
Install FGS from http://dl.maptools.org/dl/fgs/dev/dev-20091216/ Web
page
Go to your FGS installation root directory and do ". setenv.sh"
Do "FGS start"
Execute : createdb yourdb
Execute : createlang plpgsql yourdb
Execute : psql -f ..\share\contrib\lwpostgis.sql yourdb
Execute : psql -f ..\share\contrib\spatial_ref_sys.sql yourdb
Execute : createuser -P -s -R -d yourusername
Enter the password : "yourpassword"
Execute : psql -d yourdb -U yourusername -f /path/to/yourdata.sql
To use pgadmin3 on an Ubuntu OS environment, install it with "sudo
apt-get install pgadmin3". Start pgadmin3 and click on the "connect"
icon. Enter the following information:
Name: what ever you want
Host: localhost (or the ip of the server)
Port: 5432 (or your port number)
Maintenance DB: postgres
Username: yourusername
Password: yourpassword
Click 'ok'
Norm
Note: If your the host is not 'localhost' you have to edit pg_hba.conf
to add:
# IPv4 local connections:
host all all 192.168.4.0/24 md5
# IPv6 local connections:
host all all ::ffff:192.168.4.0/120 md5
and modify three lines in postgresql.conf to be:
listen_addresses = 'localhost,xxx.xxx.xxx.xxx'
port = yourport
password_encryption = on
More information about the Foss-gis-suite
mailing list