공간적으로 활성화 된 PostGIS 데이터베이스를 만들려고합니다. PostGIS 설명서, http://postgis.net/docs/manual-1.5/ch02.html#id2648455를 따르고 있습니다.
짧은 버전에서 나는 실행했다.
createdb yourdatabase
createlang plpgsql yourdatabase
하지만 마지막 세 명령은 실행하지 않았습니다.
psql -d yourdatabase -f postgis.sql
psql -d yourdatabase -f postgis_comments.sql
psql -d yourdatabase -f spatial_ref_sys.sql
데이터베이스가 여전히 공간적으로 활성화되어 있습니까? 그렇지 않은 경우 다음 .sql 파일의 위치를 알려 주면 다음과 같은 오류가 발생하므로 마지막 명령을 실행할 수 있습니다.
postgis.sql: No such file or directory
우분투 12.04를 사용하고 있습니다
2
postgis.sql 파일을 찾으려면 bash에서 따옴표없이 "locate postgis.sql"을 실행하십시오.
—
Kelso