Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2015
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 KB | None | 0 0
  1. The files belonging to this database system will be owned by user "postgres".
  2. This user must also own the server process.
  3.  
  4. initdb: invalid locale name ""
  5. initdb: invalid locale name ""
  6. initdb: invalid locale name ""
  7. initdb: invalid locale name ""
  8. initdb: invalid locale name ""
  9. initdb: invalid locale name ""
  10. The database cluster will be initialized with locale "C".
  11. The default database encoding has accordingly been set to "SQL_ASCII".
  12. The default text search configuration will be set to "english".
  13.  
  14. Data page checksums are disabled.
  15.  
  16. fixing permissions on existing directory /var/lib/postgresql/data ... ok
  17. creating subdirectories ... ok
  18. selecting default max_connections ... 100
  19. selecting default shared_buffers ... 128MB
  20. creating configuration files ... ok
  21. creating template1 database in /var/lib/postgresql/data/base/1 ... ok
  22. initializing pg_authid ... ok
  23. initializing dependencies ... ok
  24. creating system views ... ok
  25. loading system objects' descriptions ... ok
  26. creating collations ... locale: Cannot set LC_MESSAGES to default locale: No such file or directory
  27. ok
  28. creating conversions ... ok
  29. creating dictionaries ... ok
  30. setting privileges on built-in objects ... ok
  31. creating information schema ... ok
  32. loading PL/pgSQL server-side language ... ok
  33. vacuuming database template1 ... ok
  34. copying template1 to template0 ... ok
  35. copying template1 to postgres ... ok
  36. syncing data to disk ... ok
  37.  
  38. WARNING: enabling "trust" authentication for local connections
  39. You can change this by editing pg_hba.conf or using the option -A, or
  40. --auth-local and --auth-host, the next time you run initdb.
  41.  
  42. Success. You can now start the database server using:
  43.  
  44. postgres -D /var/lib/postgresql/data
  45. or
  46. pg_ctl -D /var/lib/postgresql/data -l logfile start
  47.  
  48. ****************************************************
  49. WARNING: No password has been set for the database.
  50. Use "-e POSTGRES_PASSWORD=password" to set
  51. it in "docker run".
  52. ****************************************************
  53.  
  54. PostgreSQL stand-alone backend 9.3.5
  55. backend> backend>
  56. PostgreSQL stand-alone backend 9.3.5
  57. backend> statement: CREATE DATABASE template_postgis
  58.  
  59. backend> statement: UPDATE pg_database SET datistemplate = TRUE WHERE datname = 'template_postgis'
  60.  
  61. backend>
  62. PostgreSQL stand-alone backend 9.3.5
  63. backend> backend>
  64. PostgreSQL stand-alone backend 9.3.5
  65. backend> backend> postgis-foo
  66.  
  67. PostgreSQL stand-alone backend 9.3.5
  68. backend> statement: CREATE DATABASE foo template template0 lc_collate 'nb_NO.UTF-8' lc_ctype 'nb_NO.UTF-8';
  69.  
  70. backend>
  71. PostgreSQL stand-alone backend 9.3.5
  72. backend> statement: CREATE EXTENSION postgis;
  73.  
  74. ERROR: type addbandarg[] does not exist
  75. STATEMENT: CREATE EXTENSION postgis;
  76.  
  77. backend> statement: CREATE EXTENSION postgis_topology;
  78.  
  79. ERROR: required extension "postgis" is not installed
  80. STATEMENT: CREATE EXTENSION postgis_topology;
  81.  
  82. backend> LOG: database system was shut down at 2015-01-23 11:04:53 UTC
  83. LOG: database system is ready to accept connections
  84. LOG: autovacuum launcher started
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement