Advertisement
sas2job

Untitled

Feb 9th, 2023
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.27 KB | None | 0 0
  1. $ docker-compose up
  2. Creating network "todoser_postgres" with driver "bridge"
  3. Creating network "todoser_default" with the default driver
  4. Creating volume "todoser_postgres" with default driver
  5. Creating volume "todoser_pgadmin" with default driver
  6. Creating volume "todoser_cache" with local driver
  7. Pulling postgres (postgres:14)...
  8. 14: Pulling from library/postgres
  9. bb263680fed1: Pull complete
  10. 75a54e59e691: Pull complete
  11. 3ce7f8df2b36: Pull complete
  12. f30287ef02b9: Pull complete
  13. dc1f0e9024d8: Pull complete
  14. 7f0a68628bce: Pull complete
  15. 32b11818cae3: Pull complete
  16. 48111fe612c1: Pull complete
  17. 804b23d51438: Pull complete
  18. c3d377381b80: Pull complete
  19. 3bdba78b9445: Pull complete
  20. cfca31b73d7d: Pull complete
  21. 4587f867eece: Pull complete
  22. Digest: sha256:f565573d74aedc9b218e1d191b04ec75bdd50c33b2d44d91bcd3db5f2fcea647
  23. Status: Downloaded newer image for postgres:14
  24. Pulling pgadmin (dpage/pgadmin4:)...
  25. latest: Pulling from dpage/pgadmin4
  26. 8921db27df28: Pull complete
  27. 4b8ca4e917c7: Pull complete
  28. 88519ac90777: Pull complete
  29. 42e6c8664fb6: Pull complete
  30. d36e551d05d3: Pull complete
  31. 66f2c5543b19: Pull complete
  32. 61c82444e65e: Pull complete
  33. 2c2b17bb3598: Pull complete
  34. 696fbb730363: Pull complete
  35. 512ec2f26b63: Pull complete
  36. 280308ea40e1: Pull complete
  37. 95260692db27: Pull complete
  38. d4d808b4d3c4: Pull complete
  39. 188c70bfa7a3: Pull complete
  40. Digest: sha256:10ccedac4c8a031841c309e1d2365ddd4e3f7c2d888b44f261cb181616db433b
  41. Status: Downloaded newer image for dpage/pgadmin4:latest
  42. Pulling cache (redis:6.2-alpine)...
  43. 6.2-alpine: Pulling from library/redis
  44. 8921db27df28: Already exists
  45. aa0a0152d355: Pull complete
  46. 402c460b24b7: Pull complete
  47. d261588b2353: Pull complete
  48. 8c77101e0679: Pull complete
  49. 3c2b5d7bf021: Pull complete
  50. Digest: sha256:50261e334e53040742bbdf24d0553fcf17097220497d978581c9c0d14a22dcd9
  51. Status: Downloaded newer image for redis:6.2-alpine
  52. Creating postgres_container ... done
  53. Creating todoser_cache_1 ... done
  54. Creating pgadmin_container ... done
  55. Attaching to todoser_cache_1, postgres_container, pgadmin_container
  56. postgres_container | The files belonging to this database system will be owned by user "postgres".
  57. postgres_container | This user must also own the server process.
  58. postgres_container |
  59. cache_1 | 1:C 09 Feb 2023 16:06:45.650 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
  60. cache_1 | 1:C 09 Feb 2023 16:06:45.650 # Redis version=6.2.10, bits=64, commit=00000000, modified=0, pid=1, just started
  61. cache_1 | 1:C 09 Feb 2023 16:06:45.650 # Configuration loaded
  62. postgres_container | The database cluster will be initialized with locale "en_US.utf8".
  63. postgres_container | The default database encoding has accordingly been set to "UTF8".
  64. postgres_container | The default text search configuration will be set to "english".
  65. postgres_container |
  66. postgres_container | Data page checksums are disabled.
  67. cache_1 | 1:M 09 Feb 2023 16:06:45.651 # Server initialized
  68. cache_1 | 1:M 09 Feb 2023 16:06:45.651 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
  69. postgres_container |
  70. postgres_container | fixing permissions on existing directory /data/postgres ... ok
  71. postgres_container | creating subdirectories ... ok
  72. postgres_container | selecting dynamic shared memory implementation ... posix
  73. postgres_container | selecting default max_connections ... 100
  74. postgres_container | selecting default shared_buffers ... 128MB
  75. postgres_container | selecting default time zone ... Etc/UTC
  76. postgres_container | creating configuration files ... ok
  77. postgres_container | running bootstrap script ... ok
  78. postgres_container | performing post-bootstrap initialization ... ok
  79. postgres_container | syncing data to disk ... initdb: warning: enabling "trust" authentication for local connections
  80. postgres_container | You can change this by editing pg_hba.conf or using the option -A, or
  81. postgres_container | --auth-local and --auth-host, the next time you run initdb.
  82. postgres_container | ok
  83. postgres_container |
  84. postgres_container |
  85. postgres_container | Success. You can now start the database server using:
  86. postgres_container |
  87. postgres_container | pg_ctl -D /data/postgres -l logfile start
  88. postgres_container |
  89. postgres_container | waiting for server to start....2023-02-09 16:06:46.782 UTC [49] LOG: starting PostgreSQL 14.6 (Debian 14.6-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
  90. postgres_container | 2023-02-09 16:06:46.783 UTC [49] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
  91. postgres_container | 2023-02-09 16:06:46.787 UTC [50] LOG: database system was shut down at 2023-02-09 16:06:46 UTC
  92. postgres_container | 2023-02-09 16:06:46.791 UTC [49] LOG: database system is ready to accept connections
  93. postgres_container | done
  94. postgres_container | server started
  95. postgres_container | CREATE DATABASE
  96. postgres_container |
  97. postgres_container |
  98. postgres_container | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
  99. postgres_container |
  100. postgres_container | 2023-02-09 16:06:47.055 UTC [49] LOG: received fast shutdown request
  101. postgres_container | waiting for server to shut down....2023-02-09 16:06:47.056 UTC [49] LOG: aborting any active transactions
  102. postgres_container | 2023-02-09 16:06:47.057 UTC [49] LOG: background worker "logical replication launcher" (PID 56) exited with exit code 1
  103. postgres_container | 2023-02-09 16:06:47.058 UTC [51] LOG: shutting down
  104. postgres_container | 2023-02-09 16:06:47.068 UTC [49] LOG: database system is shut down
  105. postgres_container | done
  106. postgres_container | server stopped
  107. postgres_container |
  108. postgres_container | PostgreSQL init process complete; ready for start up.
  109. postgres_container |
  110. postgres_container | 2023-02-09 16:06:47.180 UTC [1] LOG: starting PostgreSQL 14.6 (Debian 14.6-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
  111. postgres_container | 2023-02-09 16:06:47.181 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
  112. postgres_container | 2023-02-09 16:06:47.181 UTC [1] LOG: listening on IPv6 address "::", port 5432
  113. postgres_container | 2023-02-09 16:06:47.183 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
  114. postgres_container | 2023-02-09 16:06:47.187 UTC [64] LOG: database system was shut down at 2023-02-09 16:06:47 UTC
  115. postgres_container | 2023-02-09 16:06:47.191 UTC [1] LOG: database system is ready to accept connections
  116. pgadmin_container | NOTE: Configuring authentication for DESKTOP mode.
  117. pgadmin_container | pgAdmin 4 - Application Initialisation
  118. pgadmin_container | ======================================
  119. pgadmin_container |
  120. pgadmin_container | [2023-02-09 16:07:01 +0000] [1] [INFO] Starting gunicorn 20.1.0
  121. pgadmin_container | [2023-02-09 16:07:01 +0000] [1] [INFO] Listening at: http://[::]:80 (1)
  122. pgadmin_container | [2023-02-09 16:07:01 +0000] [1] [INFO] Using worker: gthread
  123. pgadmin_container | [2023-02-09 16:07:01 +0000] [92] [INFO] Booting worker with pid: 92
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement