Advertisement
Guest User

Untitled

a guest
May 4th, 2024
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.30 KB | None | 0 0
  1. docker compose -f deploy.yml up --build --force-recreate
  2. [+] Building 0.6s (10/10) FINISHED docker:default
  3. => [user-service-backend internal] load build definition from Dockerfile 0.0s
  4. => => transferring dockerfile: 244B 0.0s
  5. => [user-service-backend internal] load metadata for docker.io/library/openjdk:17-jdk-alpine 0.5s
  6. => [user-service-backend internal] load .dockerignore 0.0s
  7. => => transferring context: 2B 0.0s
  8. => [user-service-backend internal] load build context 0.1s
  9. => => transferring context: 603.46kB 0.0s
  10. => [user-service-backend build 1/4] FROM docker.io/library/openjdk:17-jdk-alpine@sha256:4b6abae565492dbe9e7a894137c966a7485154238902f2f25e9dbd9784383d81 0.0s
  11. => CACHED [user-service-backend build 2/4] WORKDIR /app 0.0s
  12. => CACHED [user-service-backend build 3/4] COPY . /app/ 0.0s
  13. => CACHED [user-service-backend build 4/4] RUN ./gradlew 0.0s
  14. => CACHED [user-service-backend runtime 3/3] COPY --from=build /app/ /app/ 0.0s
  15. => [user-service-backend] exporting to image 0.0s
  16. => => exporting layers 0.0s
  17. => => writing image sha256:3647c8f4d8e5056603de1f2fd5e5f4f5e8648fbb15aa7dfca0146f75576a8f33 0.0s
  18. => => naming to docker.io/library/user-service-user-service-backend 0.0s
  19. [+] Running 3/2
  20. ✔ Container user-service-postgres-1 Recreated 0.6s
  21. ✔ Container user-service-rabbitmq-1 Recreated 0.1s
  22. ✔ Container user-service-user-service-backend-1 Recreated 0.0s
  23. Attaching to postgres-1, rabbitmq-1, user-service-backend-1
  24. postgres-1 | The files belonging to this database system will be owned by user "postgres".
  25. postgres-1 | This user must also own the server process.
  26. postgres-1 |
  27. postgres-1 | The database cluster will be initialized with locale "en_US.utf8".
  28. postgres-1 | The default database encoding has accordingly been set to "UTF8".
  29. postgres-1 | The default text search configuration will be set to "english".
  30. postgres-1 |
  31. postgres-1 | Data page checksums are disabled.
  32. postgres-1 |
  33. postgres-1 | fixing permissions on existing directory /var/lib/postgresql/data ... ok
  34. postgres-1 | creating subdirectories ... ok
  35. postgres-1 | selecting dynamic shared memory implementation ... posix
  36. postgres-1 | selecting default max_connections ... 100
  37. postgres-1 | selecting default shared_buffers ... 128MB
  38. postgres-1 | selecting default time zone ... Etc/UTC
  39. postgres-1 | creating configuration files ... ok
  40. postgres-1 | running bootstrap script ... ok
  41. postgres-1 | performing post-bootstrap initialization ... ok
  42. postgres-1 | syncing data to disk ... ok
  43. postgres-1 |
  44. postgres-1 | initdb: warning: enabling "trust" authentication for local connections
  45. postgres-1 | initdb: hint: You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb.
  46. postgres-1 |
  47. postgres-1 | Success. You can now start the database server using:
  48. postgres-1 |
  49. postgres-1 | pg_ctl -D /var/lib/postgresql/data -l logfile start
  50. postgres-1 |
  51. postgres-1 | waiting for server to start....2024-05-04 16:58:07.508 UTC [102] LOG: starting PostgreSQL 16.2 (Debian 16.2-1.pgdg120+2) on x86_64-pc-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit
  52. postgres-1 | 2024-05-04 16:58:07.517 UTC [102] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
  53. postgres-1 | 2024-05-04 16:58:07.527 UTC [111] LOG: database system was shut down at 2024-05-04 16:58:07 UTC
  54. postgres-1 | 2024-05-04 16:58:07.539 UTC [102] LOG: database system is ready to accept connections
  55. postgres-1 | done
  56. postgres-1 | server started
  57. postgres-1 | 2024-05-04 16:58:07.638 UTC [118] FATAL: role "admin" does not exist
  58. postgres-1 |
  59. postgres-1 | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sh
  60. postgres-1 | 2024-05-04 16:58:07.820 UTC [129] FATAL: role "admin" does not exist
  61. postgres-1 | CREATE ROLE
  62. postgres-1 | CREATE DATABASE
  63. postgres-1 | GRANT
  64. postgres-1 | GRANT
  65. postgres-1 | psql:/docker-entrypoint-initdb.d/init.sql:1: NOTICE: schema "public" already exists, skipping
  66. postgres-1 | CREATE SCHEMA
  67. postgres-1 | CREATE TABLE
  68. postgres-1 | ALTER TABLE
  69. postgres-1 | CREATE TABLE
  70. postgres-1 | ALTER TABLE
  71. postgres-1 | CREATE TABLE
  72. postgres-1 | ALTER TABLE
  73. postgres-1 | CREATE TABLE
  74. postgres-1 | ALTER TABLE
  75. postgres-1 |
  76. postgres-1 | /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/init.sql
  77. postgres-1 | CREATE SCHEMA
  78. postgres-1 | psql:/docker-entrypoint-initdb.d/init.sql:1: NOTICE: schema "public" already exists, skipping
  79. postgres-1 | CREATE TABLE
  80. postgres-1 | ALTER TABLE
  81. postgres-1 | CREATE TABLE
  82. postgres-1 | ALTER TABLE
  83. postgres-1 | CREATE TABLE
  84. postgres-1 | ALTER TABLE
  85. postgres-1 | CREATE TABLE
  86. postgres-1 | ALTER TABLE
  87. postgres-1 |
  88. postgres-1 |
  89. postgres-1 | 2024-05-04 16:58:08.416 UTC [102] LOG: received fast shutdown request
  90. postgres-1 | waiting for server to shut down....2024-05-04 16:58:08.417 UTC [102] LOG: aborting any active transactions
  91. postgres-1 | 2024-05-04 16:58:08.421 UTC [102] LOG: background worker "logical replication launcher" (PID 115) exited with exit code 1
  92. postgres-1 | 2024-05-04 16:58:08.437 UTC [109] LOG: shutting down
  93. postgres-1 | 2024-05-04 16:58:08.439 UTC [109] LOG: checkpoint starting: shutdown immediate
  94. postgres-1 | 2024-05-04 16:58:08.520 UTC [109] LOG: checkpoint complete: wrote 1013 buffers (6.2%); 0 WAL file(s) added, 0 removed, 0 recycled; write=0.071 s, sync=0.004 s, total=0.084 s; sync files=382, longest=0.002 s, average=0.001 s; distance=4587 kB, estimate=4587 kB; lsn=0/1965958, redo lsn=0/1965958
  95. postgres-1 | 2024-05-04 16:58:08.550 UTC [102] LOG: database system is shut down
  96. postgres-1 | done
  97. postgres-1 | server stopped
  98. postgres-1 |
  99. postgres-1 | PostgreSQL init process complete; ready for start up.
  100. postgres-1 |
  101. postgres-1 | 2024-05-04 16:58:08.713 UTC [1] LOG: starting PostgreSQL 16.2 (Debian 16.2-1.pgdg120+2) on x86_64-pc-linux-gnu, compiled by gcc (Debian 12.2.0-14) 12.2.0, 64-bit
  102. postgres-1 | 2024-05-04 16:58:08.713 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
  103. postgres-1 | 2024-05-04 16:58:08.713 UTC [1] LOG: listening on IPv6 address "::", port 5432
  104. postgres-1 | 2024-05-04 16:58:08.721 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
  105. postgres-1 | 2024-05-04 16:58:08.748 UTC [168] LOG: database system was shut down at 2024-05-04 16:58:08 UTC
  106. postgres-1 | 2024-05-04 16:58:08.760 UTC [1] LOG: database system is ready to accept connections
  107. rabbitmq-1 | 2024-05-04 16:58:12.302145+00:00 [error] <0.147.0> Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces
  108. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> supervisor: {local,net_sup}
  109. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> errorContext: start_error
  110. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> reason: {"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces",
  111. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> [{auth,init_no_setcookie,0,[{file,"auth.erl"},{line,313}]},
  112. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {auth,init,1,[{file,"auth.erl"},{line,165}]},
  113. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {gen_server,init_it,2,[{file,"gen_server.erl"},{line,851}]},
  114. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {gen_server,init_it,6,[{file,"gen_server.erl"},{line,814}]},
  115. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {proc_lib,init_p_do_apply,3,
  116. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> [{file,"proc_lib.erl"},{line,240}]}]}
  117. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> offender: [{pid,undefined},
  118. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {id,auth},
  119. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {mfargs,{auth,start_link,[]}},
  120. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {restart_type,permanent},
  121. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {significant,false},
  122. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {shutdown,2000},
  123. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0> {child_type,worker}]
  124. rabbitmq-1 | 2024-05-04 16:58:12.359180+00:00 [error] <0.145.0>
  125. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> crasher:
  126. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> initial call: auth:init/1
  127. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> pid: <0.147.0>
  128. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> registered_name: []
  129. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> exception error: "Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces"
  130. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> in function auth:init_no_setcookie/0 (auth.erl, line 313)
  131. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> in call from auth:init/1 (auth.erl, line 165)
  132. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> in call from gen_server:init_it/2 (gen_server.erl, line 851)
  133. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> in call from gen_server:init_it/6 (gen_server.erl, line 814)
  134. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> ancestors: [net_sup,kernel_sup,<0.47.0>]
  135. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> message_queue_len: 0
  136. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> messages: []
  137. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> links: [<0.145.0>]
  138. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> dictionary: []
  139. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> trap_exit: true
  140. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> status: running
  141. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> heap_size: 1598
  142. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> stack_size: 28
  143. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> reductions: 2260
  144. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0> neighbours:
  145. rabbitmq-1 | 2024-05-04 16:58:12.358994+00:00 [error] <0.147.0>
  146. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0>
  147. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> BOOT FAILED
  148. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> ===========
  149. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> Exception during startup:
  150. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0>
  151. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> error:{badmatch,{error,{{shutdown,{failed_to_start_child,auth,{"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces",[{auth,init_no_setcookie,0,[{file,"auth.erl"},{line,313}]},{auth,init,1,[{file,"auth.erl"},{line,165}]},{gen_server,init_it,2,[{file,"gen_server.erl"},{line,851}]},{gen_server,init_it,6,[{file,"gen_server.erl"},{line,814}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,240}]}]}}},{child,undefined,net_sup_dynamic,{erl_distribution,start_link,[#{clean_halt => false,name => rabbit_prelaunch_25@localhost,name_domain => shortnames,net_tickintensity => 4,net_ticktime => 60,supervisor => net_sup_dynamic}]},permanent,false,1000,supervisor,[erl_distribution]}}}}
  152. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0>
  153. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> rabbit_prelaunch_dist:duplicate_node_check/1, line 80
  154. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> rabbit_prelaunch_dist:setup/1, line 23
  155. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> rabbit_prelaunch:do_run/0, line 115
  156. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> rabbit_prelaunch:run_prelaunch_first_phase/0, line 32
  157. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> supervisor:do_start_child_i/3, line 420
  158. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> supervisor:do_start_child/2, line 406
  159. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> supervisor:-start_children/2-fun-0-/3, line 390
  160. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0> supervisor:children_map/4, line 1256
  161. rabbitmq-1 | 2024-05-04 16:58:12.383584+00:00 [error] <0.132.0>
  162. rabbitmq-1 |
  163. rabbitmq-1 | BOOT FAILED
  164. rabbitmq-1 | ===========
  165. rabbitmq-1 | Exception during startup:
  166. rabbitmq-1 |
  167. rabbitmq-1 | error:{badmatch,{error,{{shutdown,{failed_to_start_child,auth,{"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces",[{auth,init_no_setcookie,0,[{file,"auth.erl"},{line,313}]},{auth,init,1,[{file,"auth.erl"},{line,165}]},{gen_server,init_it,2,[{file,"gen_server.erl"},{line,851}]},{gen_server,init_it,6,[{file,"gen_server.erl"},{line,814}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,240}]}]}}},{child,undefined,net_sup_dynamic,{erl_distribution,start_link,[#{clean_halt => false,name => rabbit_prelaunch_25@localhost,name_domain => shortnames,net_tickintensity => 4,net_ticktime => 60,supervisor => net_sup_dynamic}]},permanent,false,1000,supervisor,[erl_distribution]}}}}
  168. rabbitmq-1 |
  169. rabbitmq-1 | rabbit_prelaunch_dist:duplicate_node_check/1, line 80
  170. rabbitmq-1 | rabbit_prelaunch_dist:setup/1, line 23
  171. rabbitmq-1 | rabbit_prelaunch:do_run/0, line 115
  172. rabbitmq-1 | rabbit_prelaunch:run_prelaunch_first_phase/0, line 32
  173. rabbitmq-1 | supervisor:do_start_child_i/3, line 420
  174. rabbitmq-1 | supervisor:do_start_child/2, line 406
  175. rabbitmq-1 | supervisor:-start_children/2-fun-0-/3, line 390
  176. rabbitmq-1 | supervisor:children_map/4, line 1256
  177. rabbitmq-1 |
  178. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> supervisor: {local,rabbit_prelaunch_sup}
  179. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> errorContext: start_error
  180. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> reason: {badmatch,
  181. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {error,
  182. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {{shutdown,
  183. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {failed_to_start_child,auth,
  184. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces",
  185. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> [{auth,init_no_setcookie,0,
  186. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> [{file,"auth.erl"},{line,313}]},
  187. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {auth,init,1,[{file,"auth.erl"},{line,165}]},
  188. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {gen_server,init_it,2,
  189. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> [{file,"gen_server.erl"},{line,851}]},
  190. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {gen_server,init_it,6,
  191. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> [{file,"gen_server.erl"},{line,814}]},
  192. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {proc_lib,init_p_do_apply,3,
  193. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> [{file,"proc_lib.erl"},{line,240}]}]}}},
  194. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {child,undefined,net_sup_dynamic,
  195. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {erl_distribution,start_link,
  196. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> [#{clean_halt => false,
  197. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> name => rabbit_prelaunch_25@localhost,
  198. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> name_domain => shortnames,
  199. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> net_tickintensity => 4,net_ticktime => 60,
  200. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> supervisor => net_sup_dynamic}]},
  201. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> permanent,false,1000,supervisor,
  202. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> [erl_distribution]}}}}
  203. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> offender: [{pid,undefined},
  204. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {id,prelaunch},
  205. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {mfargs,{rabbit_prelaunch,run_prelaunch_first_phase,[]}},
  206. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {restart_type,transient},
  207. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {significant,false},
  208. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {shutdown,5000},
  209. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0> {child_type,worker}]
  210. rabbitmq-1 | 2024-05-04 16:58:13.412232+00:00 [error] <0.132.0>
  211. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> crasher:
  212. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> initial call: application_master:init/4
  213. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> pid: <0.130.0>
  214. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> registered_name: []
  215. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> exception exit: {{shutdown,
  216. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {failed_to_start_child,prelaunch,
  217. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {badmatch,
  218. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {error,
  219. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {{shutdown,
  220. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {failed_to_start_child,auth,
  221. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces",
  222. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> [{auth,init_no_setcookie,0,
  223. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> [{file,"auth.erl"},{line,313}]},
  224. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {auth,init,1,[{file,"auth.erl"},{line,165}]},
  225. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {gen_server,init_it,2,
  226. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> [{file,"gen_server.erl"},{line,851}]},
  227. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {gen_server,init_it,6,
  228. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> [{file,"gen_server.erl"},{line,814}]},
  229. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {proc_lib,init_p_do_apply,3,
  230. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> [{file,"proc_lib.erl"},{line,240}]}]}}},
  231. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {child,undefined,net_sup_dynamic,
  232. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {erl_distribution,start_link,
  233. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> [#{clean_halt => false,
  234. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> name => rabbit_prelaunch_25@localhost,
  235. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> name_domain => shortnames,
  236. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> net_tickintensity => 4,net_ticktime => 60,
  237. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> supervisor => net_sup_dynamic}]},
  238. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> permanent,false,1000,supervisor,
  239. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> [erl_distribution]}}}}}},
  240. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> {rabbit_prelaunch_app,start,[normal,[]]}}
  241. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> in function application_master:init/4 (application_master.erl, line 142)
  242. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> ancestors: [<0.129.0>]
  243. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> message_queue_len: 1
  244. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> messages: [{'EXIT',<0.131.0>,normal}]
  245. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> links: [<0.129.0>,<0.44.0>]
  246. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> dictionary: []
  247. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> trap_exit: true
  248. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> status: running
  249. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> heap_size: 610
  250. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> stack_size: 28
  251. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> reductions: 188
  252. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0> neighbours:
  253. rabbitmq-1 | 2024-05-04 16:58:13.412842+00:00 [error] <0.130.0>
  254. rabbitmq-1 | 2024-05-04 16:58:13.413507+00:00 [notice] <0.44.0> Application rabbitmq_prelaunch exited with reason: {{shutdown,{failed_to_start_child,prelaunch,{badmatch,{error,{{shutdown,{failed_to_start_child,auth,{"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces",[{auth,init_no_setcookie,0,[{file,"auth.erl"},{line,313}]},{auth,init,1,[{file,"auth.erl"},{line,165}]},{gen_server,init_it,2,[{file,"gen_server.erl"},{line,851}]},{gen_server,init_it,6,[{file,"gen_server.erl"},{line,814}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,240}]}]}}},{child,undefined,net_sup_dynamic,{erl_distribution,start_link,[#{clean_halt => false,name => rabbit_prelaunch_25@localhost,name_domain => shortnames,net_tickintensity => 4,net_ticktime => 60,supervisor => net_sup_dynamic}]},permanent,false,1000,supervisor,[erl_distribution]}}}}}},{rabbit_prelaunch_app,start,[normal,[]]}}
  255. rabbitmq-1 | {"Kernel pid terminated",application_controller,"{application_start_failure,rabbitmq_prelaunch,{{shutdown,{failed_to_start_child,prelaunch,{badmatch,{error,{{shutdown,{failed_to_start_child,auth,{\"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces\",[{auth,init_no_setcookie,0,[{file,\"auth.erl\"},{line,313}]},{auth,init,1,[{file,\"auth.erl\"},{line,165}]},{gen_server,init_it,2,[{file,\"gen_server.erl\"},{line,851}]},{gen_server,init_it,6,[{file,\"gen_server.erl\"},{line,814}]},{proc_lib,init_p_do_apply,3,[{file,\"proc_lib.erl\"},{line,240}]}]}}},{child,undefined,net_sup_dynamic,{erl_distribution,start_link,[#{clean_halt => false,name => rabbit_prelaunch_25@localhost,name_domain => shortnames,net_tickintensity => 4,net_ticktime => 60,supervisor => net_sup_dynamic}]},permanent,false,1000,supervisor,[erl_distribution]}}}}}},{rabbit_prelaunch_app,start,[normal,[]]}}}"}
  256. rabbitmq-1 | Kernel pid terminated (application_controller) ({application_start_failure,rabbitmq_prelaunch,{{shutdown,{failed_to_start_child,prelaunch,{badmatch,{error,{{shutdown,{failed_to_start_child,auth,{"Error when reading /var/lib/rabbitmq/.erlang.cookie: eacces",[{auth,init_no_setcookie,0,[{file,"auth.erl"},{line,313}]},{auth,init,1,[{file,"auth.erl"},{line,165}]},{gen_server,init_it,2,[{file,"gen_server.erl"},{line,851}]},{gen_server,init_it,6,[{file,"gen_server.erl"},{line,814}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,240}]}]}}},{child,undefined,net_sup_dynamic,{erl_distribution,start_link,[#{clean_halt => false,name => rabbit_prelaunch_25@localhost,name_domain => shortnames,net_tickintensity => 4,net_ticktime => 60,supervisor => net_sup_dynamic}]},permanent,false,1000,supervisor,[erl_distribution]}}}}}},{rabbit_prelaunch_app,start,[normal,[]]}}})
  257. rabbitmq-1 |
  258. rabbitmq-1 | Crash dump is being written to: erl_crash.dump...
  259. rabbitmq-1 exited with code 0
  260. dependency failed to start: container user-service-rabbitmq-1 exited (0)
  261.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement