jeff_dickey

Output from Postgres `initdb`

Dec 22nd, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. # Output from `initdb /usr/local/env/postgres`
  2. The files belonging to this database system will be owned by user "your-user-name".
  3. This user must also own the server process.
  4.  
  5. The database cluster will be initialized with locales
  6. COLLATE: C
  7. CTYPE: UTF-8
  8. MESSAGES: C
  9. MONETARY: C
  10. NUMERIC: C
  11. TIME: C
  12. The default database encoding has accordingly been set to "UTF8".
  13. initdb: could not find suitable text search configuration for locale "UTF-8"
  14. The default text search configuration will be set to "simple".
  15.  
  16. Data page checksums are disabled.
  17.  
  18. creating directory /usr/local/env/postgres ... ok
  19. creating subdirectories ... ok
  20. selecting default max_connections ... 100
  21. selecting default shared_buffers ... 128MB
  22. selecting dynamic shared memory implementation ... posix
  23. creating configuration files ... ok
  24. creating template1 database in /usr/local/env/postgres/base/1 ... ok
  25. initializing pg_authid ... ok
  26. initializing dependencies ... ok
  27. creating system views ... ok
  28. loading system objects' descriptions ... ok
  29. creating collations ... ok
  30. creating conversions ... ok
  31. creating dictionaries ... ok
  32. setting privileges on built-in objects ... ok
  33. creating information schema ... ok
  34. loading PL/pgSQL server-side language ... ok
  35. vacuuming database template1 ... ok
  36. copying template1 to template0 ... ok
  37. copying template1 to postgres ... ok
  38. syncing data to disk ... ok
  39.  
  40. WARNING: enabling "trust" authentication for local connections
  41. You can change this by editing pg_hba.conf or using the option -A, or
  42. --auth-local and --auth-host, the next time you run initdb.
  43.  
  44. Success. You can now start the database server using:
  45.  
  46. postgres -D /usr/local/env/postgres
  47. or
  48. pg_ctl -D /usr/local/env/postgres -l logfile start
Add Comment
Please, Sign In to add comment