I’ve installed posgres on a ubuntu droplet. I have some files the I cloned to the root users account under the directory of mapnik/data. The exact file I am interested in is
/root/mapnik/data/world_merc.shp
When I log in as postgres and try to import this file from the root I get an error of “unable to open”. The exact command I am using to import is shp2pgsql -s 4326 -a /root/mapnik/data/world_merc.shp | psql -h localhost -d postgres -U
I am guessing this is because postgres cannot read from the root user’s files? Any help to get this resolved
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Hi there,
What are the file permissions on the file you are trying to import?
You can find out the file permissions by typing:
If the owner and the group are root, you may need to change ownership of the file to the postgres user to access it.
You can change the ownership of the file by typing:
That should allow you to import it into the psql command.
Cheers