Tardiba - The Tasmanian Devil Database Server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
874 B

  1. 1. If we stick with the separate data partition which
  2. i think is quite ok, we should be nice enough to create
  3. a symlinc between the place where postgresql expects
  4. to find its files (/var/opt/postgresql/data) and the actual
  5. /data partition.
  6. 2. We should try to initialize the db cluster after install
  7. issuing an `initdb -D /var/opt/postgresql/data` command
  8. with user postgres. Since we have some env variables maybe
  9. the `-D blah blah blah` is redundant, but it cannot hurt to be safe
  10. 3. We might want to add a `-i -o -e` ending to the line that
  11. starts the postgresql daemon meaning `i want inet connections
  12. and please use european date formats`. Although PG guys advise
  13. to use the new way to tel pg that (postmaster.opts or so), I
  14. stick with the old way if possible. Anyway the `-o -e` must go
  15. to the run line.