Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.06 KB | None | 0 0
  1. mohit@mohit-Inspiron-1545:~/builds/source/postgis$ >echo "create index on points using spgist(point(g));" | valgrind --leak-check=yes --log-file=valgrindlog /usr/local/pgsql/bin/postgres --single postgis -D /usr/local/pgsql/data/
  2. create index on points using spgist(point(g));: command not found
  3. FATAL:  configuration file "/usr/local/pgsql/data/postgresql.conf" contains errors
  4. mohit@mohit-Inspiron-1545:~/builds/source/postgis$ >echo "create index on points using gist(g)" | valgrind --leak-check=yes --log-file=valgrindlog /usr/local/pgsql/bin/postgres --single postgis -D /usr/local/pgsql/data/
  5. create index on points using gist(g): command not found
  6. FATAL:  configuration file "/usr/local/pgsql/data/postgresql.conf" contains errors
  7. mohit@mohit-Inspiron-1545:~/builds/source/postgis$ >echo "create table t(g geometry)" | valgrind --leak-check=yes --log-file=valgrindlog /usr/local/pgsql/bin/postgres --single postgis -D /usr/local/pgsql/data/
  8. create table t(g geometry): command not found
  9. FATAL:  configuration file "/usr/local/pgsql/data/postgresql.conf" contains errors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement