Re: [OSM-talk] Problems setting up Osmosis and Postgres SQL

2011-09-05 Thread Alberto
Heya, Same problem. If you use \d command into psql you will see all tables have postgres owner. You must assign them your user. ALTER TABLE geometry_columns OWNER TO your_user; ALTER TABLE nodes OWNER TO your_user; ALTER TABLE relation_members OWNER TO your_user; ALTER TABLE relations OWNER

[OSM-talk] Problems setting up Osmosis and Postgres SQL

2011-02-03 Thread Pelle Svensson
Hi, I'm doing something wrong when I try to configure Postgres SQL DB with osmosis-SNAPSHOT-r25162. I get ERROR: permission denied for relation schema_info Database setup on Fedora 14 64-bit: sudo -u postgres psql CREATE USER osm create database osm; GRANT ALL PRIVILEGES