Skip to content

Zulip via docker container on Synology NAS. Broken site and links. #493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
LiquidatorIO opened this issue Apr 6, 2025 · 6 comments
Open

Comments

@LiquidatorIO
Copy link

LiquidatorIO commented Apr 6, 2025

Hello
I am looking for help with Zulip ARM installation via docker container on Synology NAS.
I run a NAS in Tailscale network. No access outside VPN. We use server IP.

I have there a Gitea server, it works fine under port :3000. Now, wanted to add Zulip for communications.

I managed to install Zulip using https://github.com/zulip/docker-zulip. Changing image to immortalvision/zulip-arm:10.0-0 for ARM architecture, ports 5010 for http, no HTTPS. All installed without any errors. But when I type its adress and port in browser, it opens the website without any style/images. Once a while it changes to proper looking site with internal error message.

Image
Image
Image
Image

I appreciate any help. Thanks

PS. Passwords are there, just changed to - for posting. Added screenshots of Zulip, containers, and Gitea working on same NAS.

Here is my docker-compose.yml:

services:
  database:
    image: "zulip/zulip-postgresql:14"
    restart: unless-stopped
    environment:
      POSTGRES_DB: "zulip"
      POSTGRES_USER: "zulip"
      ## Note that you need to do a manual `ALTER ROLE` query if you
      ## change this on a system after booting the postgres container
      ## the first time on a host.  Instructions are available in README.md.
      POSTGRES_PASSWORD: "-"
    volumes:
      - "postgresql-14:/var/lib/postgresql/data:rw"
  memcached:
    image: "memcached:alpine"
    restart: unless-stopped
    command:
      - "sh"
      - "-euc"
      - |
        echo 'mech_list: plain' > "$$SASL_CONF_PATH"
        echo "zulip@$$HOSTNAME:$$MEMCACHED_PASSWORD" > "$$MEMCACHED_SASL_PWDB"
        echo "zulip@localhost:$$MEMCACHED_PASSWORD" >> "$$MEMCACHED_SASL_PWDB"
        exec memcached -S
    environment:
      SASL_CONF_PATH: "/home/memcache/memcached.conf"
      MEMCACHED_SASL_PWDB: "/home/memcache/memcached-sasl-db"
      MEMCACHED_PASSWORD: "-"
  rabbitmq:
    image: "rabbitmq:4.0.7"
    restart: unless-stopped
    environment:
      RABBITMQ_DEFAULT_USER: "zulip"
      RABBITMQ_DEFAULT_PASS: "-"
    volumes:
      - "rabbitmq:/var/lib/rabbitmq:rw"
  redis:
    image: "redis:alpine"
    restart: unless-stopped
    command:
      - "sh"
      - "-euc"
      - |
        echo "requirepass '$$REDIS_PASSWORD'" > /etc/redis.conf
        exec redis-server /etc/redis.conf
    environment:
      REDIS_PASSWORD: "-"
    volumes:
      - "redis:/data:rw"
  zulip:
    image: "immortalvision/zulip-arm:10.1-0"
    restart: unless-stopped
    build:
      context: .
      args:
        ## Change these if you want to build zulip from a different repo/branch
        ZULIP_GIT_URL: https://github.com/zulip/zulip.git
        ZULIP_GIT_REF: "10.1"
        ## Set this up if you plan to use your own CA certificate bundle for building
        # CUSTOM_CA_CERTIFICATES:
    ports:
      - "5010:80"
      - "5011:443"
    environment:
      ## See https://github.com/zulip/docker-zulip#configuration for
      ## details on this section and how to discover the many
      ## additional settings that are supported here.
      DISABLE_HTTPS: "True"
      DB_HOST: "database"
      DB_HOST_PORT: "5432"
      DB_USER: "zulip"
      SSL_CERTIFICATE_GENERATION: "self-signed"
      SETTING_MEMCACHED_LOCATION: "memcached:11211"
      SETTING_RABBITMQ_HOST: "rabbitmq"
      SETTING_REDIS_HOST: "redis"
      SECRETS_email_password: "123456789"
      ## These should match RABBITMQ_DEFAULT_PASS, POSTGRES_PASSWORD,
      ## MEMCACHED_PASSWORD, and REDIS_PASSWORD above.
      SECRETS_rabbitmq_password: "-"
      SECRETS_postgres_password: "-"
      SECRETS_memcached_password: "-"
      SECRETS_redis_password: "-"
      SECRETS_secret_key: "-"
      SETTING_EXTERNAL_HOST: "100.91.148.1"
      SETTING_ZULIP_ADMINISTRATOR: "-"
      SETTING_EMAIL_HOST: "" # e.g. smtp.example.com
      SETTING_EMAIL_HOST_USER: "noreply@example.com"
      SETTING_EMAIL_PORT: "587"
      ## It seems that the email server needs to use ssl or tls and can't be used without it
      SETTING_EMAIL_USE_SSL: "False"
      SETTING_EMAIL_USE_TLS: "True"
      ZULIP_AUTH_BACKENDS: "EmailAuthBackend"
      ## Uncomment this when configuring the mobile push notifications service
      # SETTING_ZULIP_SERVICE_PUSH_NOTIFICATIONS: "True"
      # SETTING_ZULIP_SERVICE_SUBMIT_USAGE_STATISTICS: "True"

      ## If you're using a reverse proxy, you'll want to provide the
      ## comma-separated set of IP addresses to trust here.
      # LOADBALANCER_IPS: "",

      ## By default, files uploaded by users and profile pictures are
      ## stored directly on the Zulip server. You can configure files
      ## to be stored in Amazon S3 or a compatible data store
      ## here. See docs at:
      ##
      ##   https://zulip.readthedocs.io/en/latest/production/upload-backends.html
      ##
      ## If you want to use the S3 backend, you must set
      ## SETTING_LOCAL_UPLOADS_DIR to None as well as configuring the
      ## other fields.
      # SETTING_LOCAL_UPLOADS_DIR: "None"
      # SETTING_S3_AUTH_UPLOADS_BUCKET: ""
      # SETTING_S3_AVATAR_BUCKET: ""
      # SETTING_S3_ENDPOINT_URL: "None"
      # SETTING_S3_REGION: "None"
    volumes:
      - "zulip:/data:rw"
    ulimits:
      nofile:
        soft: 1000000
        hard: 1048576
volumes:
  zulip:
  postgresql-14:
  rabbitmq:
  redis:
@Pezhvak
Copy link

Pezhvak commented Apr 8, 2025

can you post logs here?

docker compose logs

@LiquidatorIO
Copy link
Author

liquidator@ShadowGalactic:/volume1/docker/zulip$ sudo docker-compose logs
Password: 
zulip-database-1  | 
zulip-database-1  | 
zulip-database-1  | PostgreSQL Database directory appears to contain a database; Skipping initialization
zulip-database-1  | 
zulip-database-1  | 
zulip-database-1  | 2025-04-08 09:29:17.075 UTC [1] LOG:  starting PostgreSQL 14.10 on aarch64-unknown-linux-musl, compiled by gcc (Alpine 13.2.1_git20231014) 13.2.1 20231014, 64-bit
zulip-database-1  | 2025-04-08 09:29:17.075 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
zulip-database-1  | 2025-04-08 09:29:17.075 UTC [1] LOG:  listening on IPv6 address "::", port 5432
zulip-database-1  | 2025-04-08 09:29:17.615 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
zulip-database-1  | 2025-04-08 09:29:18.236 UTC [22] LOG:  database system was shut down at 2025-04-07 16:13:36 UTC
zulip-database-1  | 2025-04-08 09:29:18.773 UTC [1] LOG:  database system is ready to accept connections
zulip-rabbitmq-1  | =INFO REPORT==== 8-Apr-2025::09:29:26.297636 ===
zulip-rabbitmq-1  |     alarm_handler: {set,{system_memory_high_watermark,[]}}
zulip-rabbitmq-1  | 2025-04-08 09:29:37.200039+00:00 [notice] <0.45.0> Application syslog exited with reason: stopped
zulip-rabbitmq-1  | 2025-04-08 09:29:37.233035+00:00 [notice] <0.216.0> Logging: switching to configured handler(s); following messages may not be visible in this log output
zulip-rabbitmq-1  | 2025-04-08 09:29:37.236232+00:00 [notice] <0.216.0> Logging: configured log handlers are now ACTIVE
zulip-rabbitmq-1  | 2025-04-08 09:29:37.275270+00:00 [info] <0.216.0> ra: starting system quorum_queues
zulip-rabbitmq-1  | 2025-04-08 09:29:37.275611+00:00 [info] <0.216.0> starting Ra system: quorum_queues in directory: /var/lib/rabbitmq/mnesia/rabbit@f6df3f5b154e/quorum/rabbit@f6df3f5b154e
zulip-rabbitmq-1  | 2025-04-08 09:29:37.782168+00:00 [info] <0.229.0> ra system 'quorum_queues' running pre init for 0 registered servers
zulip-rabbitmq-1  | 2025-04-08 09:29:37.924177+00:00 [info] <0.230.0> ra: meta data store initialised for system quorum_queues. 0 record(s) recovered
zulip-rabbitmq-1  | 2025-04-08 09:29:37.984458+00:00 [notice] <0.235.0> WAL: ra_log_wal init, open tbls: ra_log_open_mem_tables, closed tbls: ra_log_closed_mem_tables
zulip-rabbitmq-1  | 2025-04-08 09:29:38.175207+00:00 [info] <0.237.0> ra_system_recover: ra system 'quorum_queues' server recovery strategy rabbit_quorum_queue:system_recover
zulip-rabbitmq-1  | 2025-04-08 09:29:38.175559+00:00 [info] <0.237.0> [rabbit_quorum_queue:system_recover/1] rabbit not booted, skipping queue recovery
zulip-rabbitmq-1  | 2025-04-08 09:29:38.177438+00:00 [info] <0.216.0> ra: starting system coordination
zulip-rabbitmq-1  | 2025-04-08 09:29:38.177735+00:00 [info] <0.216.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@f6df3f5b154e/coordination/rabbit@f6df3f5b154e
zulip-rabbitmq-1  | 2025-04-08 09:29:38.182714+00:00 [info] <0.243.0> ra system 'coordination' running pre init for 0 registered servers
zulip-rabbitmq-1  | 2025-04-08 09:29:38.184968+00:00 [info] <0.244.0> ra: meta data store initialised for system coordination. 0 record(s) recovered
zulip-rabbitmq-1  | 2025-04-08 09:29:38.185641+00:00 [notice] <0.249.0> WAL: ra_coordination_log_wal init, open tbls: ra_coordination_log_open_mem_tables, closed tbls: ra_coordination_log_closed_mem_tables
zulip-rabbitmq-1  | 2025-04-08 09:29:38.282926+00:00 [info] <0.216.0> ra: starting system coordination
zulip-rabbitmq-1  | 2025-04-08 09:29:38.283168+00:00 [info] <0.216.0> starting Ra system: coordination in directory: /var/lib/rabbitmq/mnesia/rabbit@f6df3f5b154e/coordination/rabbit@f6df3f5b154e
zulip-rabbitmq-1  | 2025-04-08 09:29:42.759627+00:00 [notice] <0.253.0> RabbitMQ metadata store: candidate -> leader in term: 1 machine version: 1
zulip-rabbitmq-1  | 2025-04-08 09:29:44.064904+00:00 [info] <0.216.0> 
zulip-rabbitmq-1  | 2025-04-08 09:29:44.064904+00:00 [info] <0.216.0>  Starting RabbitMQ 4.0.7 on Erlang 27.3.1 [jit]
zulip-rabbitmq-1  | 2025-04-08 09:29:44.064904+00:00 [info] <0.216.0>  Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries
zulip-rabbitmq-1  | 2025-04-08 09:29:44.064904+00:00 [info] <0.216.0>  Licensed under the MPL 2.0. Website: https://rabbitmq.com
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  |   ##  ##      RabbitMQ 4.0.7
zulip-rabbitmq-1  |   ##  ##
zulip-rabbitmq-1  |   ##########  Copyright (c) 2007-2024 Broadcom Inc and/or its subsidiaries
zulip-rabbitmq-1  |   ######  ##
zulip-rabbitmq-1  |   ##########  Licensed under the MPL 2.0. Website: https://rabbitmq.com
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  |   Erlang:      27.3.1 [jit]
zulip-rabbitmq-1  |   TLS Library: OpenSSL - OpenSSL 3.3.3 11 Feb 2025
zulip-rabbitmq-1  |   Release series support status: see https://www.rabbitmq.com/release-information
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  |   Doc guides:  https://www.rabbitmq.com/docs
zulip-rabbitmq-1  |   Support:     https://www.rabbitmq.com/docs/contact
zulip-rabbitmq-1  |   Tutorials:   https://www.rabbitmq.com/tutorials
zulip-rabbitmq-1  |   Monitoring:  https://www.rabbitmq.com/docs/monitoring
zulip-rabbitmq-1  |   Upgrading:   https://www.rabbitmq.com/docs/upgrade
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  |   Logs: <stdout>
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  |   Config file(s): /etc/rabbitmq/conf.d/10-defaults.conf
zulip-rabbitmq-1  |                   /etc/rabbitmq/conf.d/20-management_agent.disable_metrics_collector.conf
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  | 
zulip-rabbitmq-1  |   Starting broker...2025-04-08 09:29:44.074415+00:00 [info] <0.216.0> 
zulip-rabbitmq-1  | 2025-04-08 09:29:44.074415+00:00 [info] <0.216.0>  node           : rabbit@f6df3f5b154e
zulip-rabbitmq-1  | 2025-04-08 09:29:44.074415+00:00 [info] <0.216.0>  home dir       : /var/lib/rabbitmq
zulip-rabbitmq-1  | 2025-04-08 09:29:44.074415+00:00 [info] <0.216.0>  config file(s) : /etc/rabbitmq/conf.d/10-defaults.conf
zulip-rabbitmq-1  | 2025-04-08 09:29:44.074415+00:00 [info] <0.216.0>                 : /etc/rabbitmq/conf.d/20-management_agent.disable_metrics_collector.conf
zulip-rabbitmq-1  | 2025-04-08 09:29:44.074415+00:00 [info] <0.216.0>  cookie hash    : PwTABEOOh1GzHw1++Y3rNg==
zulip-rabbitmq-1  | 2025-04-08 09:29:44.074415+00:00 [info] <0.216.0>  log(s)         : <stdout>
zulip-rabbitmq-1  | 2025-04-08 09:29:44.074415+00:00 [info] <0.216.0>  data dir       : /var/lib/rabbitmq/mnesia/rabbit@f6df3f5b154e
zulip-rabbitmq-1  | 2025-04-08 09:29:44.974458+00:00 [info] <0.216.0> Running boot step pre_boot defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:44.974834+00:00 [info] <0.216.0> Running boot step rabbit_global_counters defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:44.976477+00:00 [info] <0.216.0> Running boot step rabbit_osiris_metrics defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:44.977107+00:00 [info] <0.216.0> Running boot step rabbit_core_metrics defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:44.978956+00:00 [info] <0.216.0> Running boot step rabbit_alarm defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:45.029336+00:00 [info] <0.283.0> Memory high watermark set to 1183 MiB (1241299353 bytes) of 1972 MiB (2068832256 bytes) total
zulip-rabbitmq-1  | 2025-04-08 09:29:45.040281+00:00 [info] <0.285.0> Enabling free disk space monitoring (disk free space: 2269013716992, total memory: 2068832256)
zulip-rabbitmq-1  | 2025-04-08 09:29:45.040715+00:00 [info] <0.285.0> Disk free limit set to 50MB
zulip-rabbitmq-1  | 2025-04-08 09:29:45.046479+00:00 [info] <0.216.0> Running boot step code_server_cache defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:45.047013+00:00 [info] <0.216.0> Running boot step file_handle_cache defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:45.534184+00:00 [info] <0.288.0> Limiting to approx 1048479 file handles (943629 sockets)
zulip-rabbitmq-1  | 2025-04-08 09:29:45.534892+00:00 [info] <0.289.0> FHC read buffering: OFF
zulip-rabbitmq-1  | 2025-04-08 09:29:45.535124+00:00 [info] <0.289.0> FHC write buffering: ON
zulip-rabbitmq-1  | 2025-04-08 09:29:45.548790+00:00 [info] <0.216.0> Running boot step worker_pool defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:45.549110+00:00 [info] <0.270.0> Will use 4 processes for default worker pool
zulip-rabbitmq-1  | 2025-04-08 09:29:45.549890+00:00 [info] <0.270.0> Starting worker pool 'worker_pool' with 4 processes in it
zulip-rabbitmq-1  | 2025-04-08 09:29:45.551723+00:00 [info] <0.216.0> Running boot step rabbit_registry defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:45.552073+00:00 [info] <0.216.0> Running boot step database defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:45.554184+00:00 [info] <0.216.0> Peer discovery: configured backend: rabbit_peer_discovery_classic_config
zulip-rabbitmq-1  | 2025-04-08 09:29:45.557375+00:00 [notice] <0.271.0> Feature flags: attempt to enable `quorum_queue_non_voters`...
zulip-rabbitmq-1  | 2025-04-08 09:29:45.600362+00:00 [notice] <0.271.0> Feature flags: `quorum_queue_non_voters` enabled
zulip-rabbitmq-1  | 2025-04-08 09:29:45.600940+00:00 [notice] <0.271.0> Feature flags: attempt to enable `rabbitmq_4.0.0`...
zulip-rabbitmq-1  | 2025-04-08 09:29:45.644322+00:00 [notice] <0.271.0> Feature flags: `rabbitmq_4.0.0` enabled
zulip-rabbitmq-1  | 2025-04-08 09:29:45.644903+00:00 [notice] <0.271.0> Feature flags: attempt to enable `message_containers_deaths_v2`...
zulip-rabbitmq-1  | 2025-04-08 09:29:45.692783+00:00 [notice] <0.271.0> Feature flags: `message_containers_deaths_v2` enabled
zulip-rabbitmq-1  | 2025-04-08 09:29:45.693307+00:00 [notice] <0.271.0> Feature flags: attempt to enable `rabbit_exchange_type_local_random`...
zulip-rabbitmq-1  | 2025-04-08 09:29:45.741547+00:00 [notice] <0.271.0> Feature flags: `rabbit_exchange_type_local_random` enabled
zulip-rabbitmq-1  | 2025-04-08 09:29:45.742292+00:00 [info] <0.216.0> DB: virgin node -> run peer discovery
zulip-rabbitmq-1  | 2025-04-08 09:29:45.742637+00:00 [warning] <0.216.0> Classic peer discovery backend: list of nodes does not contain the local node []
zulip-rabbitmq-1  | 2025-04-08 09:29:45.789888+00:00 [notice] <0.45.0> Application mnesia exited with reason: stopped
zulip-rabbitmq-1  | 2025-04-08 09:29:48.132396+00:00 [info] <0.216.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
zulip-rabbitmq-1  | 2025-04-08 09:29:48.132805+00:00 [info] <0.216.0> Successfully synced tables from a peer
zulip-rabbitmq-1  | 2025-04-08 09:29:48.133386+00:00 [info] <0.216.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
zulip-rabbitmq-1  | 2025-04-08 09:29:48.134129+00:00 [info] <0.216.0> Successfully synced tables from a peer
zulip-rabbitmq-1  | 2025-04-08 09:29:48.277419+00:00 [info] <0.216.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
zulip-rabbitmq-1  | 2025-04-08 09:29:48.277877+00:00 [info] <0.216.0> Successfully synced tables from a peer
zulip-rabbitmq-1  | 2025-04-08 09:29:48.278506+00:00 [info] <0.216.0> Running boot step tracking_metadata_store defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.278798+00:00 [info] <0.476.0> Setting up a table for connection tracking on this node: tracked_connection
zulip-rabbitmq-1  | 2025-04-08 09:29:48.278997+00:00 [info] <0.476.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost
zulip-rabbitmq-1  | 2025-04-08 09:29:48.279199+00:00 [info] <0.476.0> Setting up a table for per-user connection counting on this node: tracked_connection_per_user
zulip-rabbitmq-1  | 2025-04-08 09:29:48.279338+00:00 [info] <0.476.0> Setting up a table for channel tracking on this node: tracked_channel
zulip-zulip-1     | === Begin Initial Configuration Phase ===
zulip-zulip-1     | Preparing and linking the uploads folder ...
zulip-zulip-1     | Prepared and linked the uploads directory.
zulip-zulip-1     | Executing puppet configuration ...
zulip-zulip-1     | Disabling https in nginx.
zulip-zulip-1     | /usr/lib/aarch64-linux-gnu/rubygems-integration/3.2.0/gems/ruby-augeas-0.5.0/lib/augeas.rb:48: warning: undefining the allocator of T_DATA class Augeas
zulip-zulip-1     | Notice: Compiled catalog for c699b2e15a48 in environment production in 15.65 seconds
zulip-zulip-1     | Notice: /Stage[main]/Zulip::Profile::Base/File[/etc/zulip/settings.py]/ensure: created
zulip-zulip-1     | Notice: /Stage[main]/Zulip::Profile::Base/File[/etc/zulip/zulip-secrets.conf]/ensure: created
zulip-zulip-1     | Notice: /Stage[main]/Zulip::App_frontend_base/File[/etc/supervisor/conf.d/zulip/zulip.conf]/content: content changed '{sha256}db2b6b821ca417f911edec8115471a336e0ef527c6d2bd91ef75c578e486a579' to '{sha256}0f493bc0ced55ca37f071dbb924788bd272b352b6497483f12502a553de6cc78'
zulip-zulip-1     | Notice: /Stage[main]/Zulip::App_frontend_base/File[/etc/zulip/uwsgi.ini]/content: content changed '{sha256}00912d13814a7395bcd02ce242972fb70cbff68eefe685b6accee521bc32d503' to '{sha256}5bbf875e86f46e56671fb9e9ce52b564419b5459a4211f790b73348512d782d8'
zulip-zulip-1     | Notice: /Stage[main]/Zulip::App_frontend_base/File[/etc/nginx/zulip-include/s3-cache]/content: content changed '{sha256}a74b144f324648ecc76e12986918cebd66053de93c0852ace19f3f3b84617034' to '{sha256}fec0e50ba5dd5a26c82ae00e29ba72583e5630a57ee55fa5646b07788e0ed25f'
zulip-zulip-1     | Notice: /Stage[main]/Zulip::Profile::App_frontend/File[/etc/nginx/sites-available/zulip-enterprise]/content: content changed '{sha256}1d508d3290ccbff4c6a3005f2c0182a028b80e5a9b76b3369838d3914a224405' to '{sha256}afded9a8fddbac084843c64934f8f7863580aefd6354e0468a1c3c95de536238'
zulip-zulip-1     | Notice: /Stage[main]/Zulip::Nginx/Service[nginx]: Triggered 'refresh' from 2 events
zulip-zulip-1     | Notice: /Stage[main]/Zulip::Supervisor/Service[supervisor]: Triggered 'refresh' from 2 events
zulip-zulip-1     | Notice: Applied catalog in 4.17 seconds
zulip-zulip-1     | Executing nginx configuration ...
zulip-zulip-1     | Nginx configuration succeeded.
zulip-zulip-1     | Certificates configuration succeeded.
zulip-zulip-1     | Setting database configuration ...
zulip-zulip-1     | Setting key "REMOTE_POSTGRES_HOST", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "REMOTE_POSTGRES_PORT", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "REMOTE_POSTGRES_SSLMODE", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Database configuration succeeded.
zulip-zulip-1     | Setting Zulip secrets ...
zulip-zulip-1     | Generating Zulip secrets ...
zulip-zulip-1     | generate_secrets: No new secrets to generate.
zulip-zulip-1     | Secrets generation succeeded.
zulip-zulip-1     | Zulip secrets configuration succeeded.
zulip-zulip-1     | Activating authentication backends ...
zulip-zulip-1     | Setting key "AUTHENTICATION_BACKENDS", type "array" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Adding authentication backend "EmailAuthBackend".
zulip-zulip-1     | Authentication backend activation succeeded.
zulip-zulip-1     | Executing Zulip configuration ...
zulip-zulip-1     | Empty var for key "EMAIL_HOST".
zulip-zulip-1     | Setting key "EMAIL_HOST_USER", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "EMAIL_PORT", type "integer" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "EMAIL_USE_SSL", type "bool" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "EMAIL_USE_TLS", type "bool" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "EXTERNAL_HOST", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "MEMCACHED_LOCATION", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "RABBITMQ_HOST", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "RABBITMQ_USER", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "RATE_LIMITING", type "bool" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "REDIS_HOST", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "REDIS_PORT", type "integer" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Setting key "ZULIP_ADMINISTRATOR", type "string" in file "/etc/zulip/settings.py".
zulip-zulip-1     | Zulip configuration succeeded.
zulip-zulip-1     | Auto backup enabled.
zulip-zulip-1     | === End Initial Configuration Phase ===
zulip-zulip-1     | === Begin Bootstrap Phase ===
zulip-zulip-1     | Waiting for database server to allow connections ...
zulip-zulip-1     | Executing Zulip first start init ...
zulip-zulip-1     | First Start Init not needed. Continuing.
zulip-zulip-1     | Running new database migrations...
zulip-zulip-1     | Operations to perform:
zulip-zulip-1     |   Apply all migrations: analytics, auth, confirmation, contenttypes, otp_static, otp_totp, phonenumber, sessions, social_django, zerver
zulip-zulip-1     | Running migrations:
zulip-zulip-1     |   Applying zerver.0697_empty_topic_name_for_dms_from_third_party_imports... OK
zulip-zulip-1     | Database migrations completed.
zulip-zulip-1     | Post setup scripts execution ...
zulip-zulip-1     | No post-setup.d folder found. Continuing.
zulip-zulip-1     | === End Bootstrap Phase ===
zulip-zulip-1     | === Begin Run Phase ===
zulip-zulip-1     | Starting Zulip using supervisor with "/etc/supervisor/supervisord.conf" config ...
zulip-zulip-1     | 
zulip-zulip-1     | 
zulip-zulip-1     | Certbot is not scheduled to run.
zulip-zulip-1     | 2025-04-08 09:31:16,796 CRIT Supervisor is running as root.  Privileges were not dropped because no user is specified in the config file.  If you intend to run as root, you can set user=root in the config file to avoid this message.
zulip-zulip-1     | 2025-04-08 09:31:16,796 WARN No file matches via include "/etc/supervisor/conf.d/*.conf"
zulip-zulip-1     | 2025-04-08 09:31:16,796 INFO Included extra file "/etc/supervisor/conf.d/zulip/cron.conf" during parsing
zulip-zulip-1     | 2025-04-08 09:31:16,796 INFO Included extra file "/etc/supervisor/conf.d/zulip/go-camo.conf" during parsing
zulip-zulip-1     | 2025-04-08 09:31:16,797 INFO Included extra file "/etc/supervisor/conf.d/zulip/nginx.conf" during parsing
zulip-zulip-1     | 2025-04-08 09:31:16,797 INFO Included extra file "/etc/supervisor/conf.d/zulip/smokescreen.conf" during parsing
zulip-zulip-1     | 2025-04-08 09:31:16,797 INFO Included extra file "/etc/supervisor/conf.d/zulip/zulip-once.conf" during parsing
zulip-zulip-1     | 2025-04-08 09:31:16,797 INFO Included extra file "/etc/supervisor/conf.d/zulip/zulip.conf" during parsing
zulip-zulip-1     | 2025-04-08 09:31:16,797 INFO Included extra file "/etc/supervisor/conf.d/zulip/zulip_db.conf" during parsing
zulip-redis-1     | 1:C 08 Apr 2025 09:29:16.431 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it 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.
zulip-redis-1     | 1:C 08 Apr 2025 09:29:16.435 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
zulip-redis-1     | 1:C 08 Apr 2025 09:29:16.435 * Redis version=7.4.2, bits=64, commit=00000000, modified=0, pid=1, just started
zulip-redis-1     | 1:C 08 Apr 2025 09:29:16.435 * Configuration loaded
zulip-zulip-1     | 2025-04-08 09:31:16,837 INFO RPC interface 'supervisor' initialized
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.437 * monotonic clock: POSIX clock_gettime
zulip-zulip-1     | 2025-04-08 09:31:16,838 CRIT Server 'unix_http_server' running without any HTTP authentication checking
zulip-zulip-1     | 2025-04-08 09:31:16,839 INFO supervisord started with pid 1
zulip-zulip-1     | 2025-04-08 09:31:17,844 INFO spawned: 'go-camo' with pid 320
zulip-zulip-1     | 2025-04-08 09:31:17,848 INFO spawned: 'smokescreen' with pid 321
zulip-zulip-1     | 2025-04-08 09:31:17,853 INFO spawned: 'zulip-django' with pid 322
zulip-zulip-1     | 2025-04-08 09:31:17,857 INFO spawned: 'zulip-tus' with pid 323
zulip-zulip-1     | 2025-04-08 09:31:17,861 INFO spawned: 'zulip-katex' with pid 324
zulip-zulip-1     | 2025-04-08 09:31:17,866 INFO spawned: 'zulip-tornado' with pid 325
zulip-zulip-1     | 2025-04-08 09:31:17,877 INFO spawned: 'zulip_deliver_scheduled_emails' with pid 326
zulip-zulip-1     | 2025-04-08 09:31:17,888 INFO spawned: 'zulip_deliver_scheduled_messages' with pid 327
zulip-zulip-1     | 2025-04-08 09:31:17,892 INFO spawned: 'process-fts-updates' with pid 328
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.439 * Running mode=standalone, port=6379.
zulip-zulip-1     | 2025-04-08 09:31:18,264 INFO spawned: 'cron' with pid 330
zulip-zulip-1     | 2025-04-08 09:31:18,311 INFO spawned: 'nginx' with pid 331
zulip-zulip-1     | 2025-04-08 09:31:18,317 INFO spawned: 'zulip_events' with pid 332
zulip-zulip-1     | 2025-04-08 09:31:18,319 INFO reaped unknown pid 319 (exit status 0)
zulip-zulip-1     | 2025-04-08 09:31:19,289 INFO success: go-camo entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,289 INFO success: smokescreen entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,290 INFO success: zulip-django entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.440 * Server initialized
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.440 * Loading RDB produced by version 7.4.2
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.440 * RDB age 62146 seconds
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.440 * RDB memory usage when created 1.00 Mb
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.440 * Done loading RDB, keys loaded: 0, keys expired: 0.
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.440 * DB loaded from disk: 0.000 seconds
zulip-zulip-1     | 2025-04-08 09:31:19,290 INFO success: zulip-tus entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,290 INFO success: zulip-katex entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,290 INFO success: zulip-tornado entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,290 INFO success: zulip_deliver_scheduled_emails entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,290 INFO success: zulip_deliver_scheduled_messages entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,290 INFO success: process-fts-updates entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,291 INFO success: cron entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,291 INFO success: nginx entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-zulip-1     | 2025-04-08 09:31:19,422 INFO success: zulip_events entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
zulip-redis-1     | 1:M 08 Apr 2025 09:29:16.440 * Ready to accept connections tcp
zulip-rabbitmq-1  | 2025-04-08 09:29:48.279484+00:00 [info] <0.476.0> Setting up a table for channel tracking on this node: tracked_channel_per_user
zulip-rabbitmq-1  | 2025-04-08 09:29:48.279720+00:00 [info] <0.216.0> Running boot step networking_metadata_store defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.283292+00:00 [info] <0.216.0> Running boot step feature_flags defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.284420+00:00 [info] <0.216.0> Running boot step codec_correctness_check defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.284723+00:00 [info] <0.216.0> Running boot step external_infrastructure defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.285043+00:00 [info] <0.216.0> Running boot step rabbit_event defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.289186+00:00 [info] <0.216.0> Running boot step rabbit_auth_mechanism_amqplain defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.289809+00:00 [info] <0.216.0> Running boot step rabbit_auth_mechanism_anonymous defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.290160+00:00 [info] <0.216.0> Running boot step rabbit_auth_mechanism_cr_demo defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.290458+00:00 [info] <0.216.0> Running boot step rabbit_auth_mechanism_plain defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.290713+00:00 [info] <0.216.0> Running boot step rabbit_exchange_type_direct defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.290968+00:00 [info] <0.216.0> Running boot step rabbit_exchange_type_fanout defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.291213+00:00 [info] <0.216.0> Running boot step rabbit_exchange_type_headers defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.291396+00:00 [info] <0.216.0> Running boot step rabbit_exchange_type_local_random defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.291614+00:00 [info] <0.216.0> Running boot step rabbit_exchange_type_topic defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.291773+00:00 [info] <0.216.0> Running boot step rabbit_priority_queue defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.291915+00:00 [info] <0.216.0> Priority queues enabled, real BQ is rabbit_variable_queue
zulip-rabbitmq-1  | 2025-04-08 09:29:48.292092+00:00 [info] <0.216.0> Running boot step kernel_ready defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.292203+00:00 [info] <0.216.0> Running boot step pg_local_amqp_connection defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.312247+00:00 [info] <0.216.0> Running boot step pg_local_amqp_session defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.312710+00:00 [info] <0.216.0> Running boot step rabbit_sysmon_minder defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.313202+00:00 [info] <0.216.0> Running boot step rabbit_epmd_monitor defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.315434+00:00 [info] <0.485.0> epmd monitor knows us, inter-node communication (distribution) port: 25672
zulip-rabbitmq-1  | 2025-04-08 09:29:48.315863+00:00 [info] <0.216.0> Running boot step guid_generator defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.421211+00:00 [info] <0.216.0> Running boot step rabbit_node_monitor defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.422202+00:00 [info] <0.489.0> Starting rabbit_node_monitor (in ignore mode)
zulip-rabbitmq-1  | 2025-04-08 09:29:48.422624+00:00 [info] <0.216.0> Running boot step delegate_sup defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.424744+00:00 [info] <0.216.0> Running boot step rabbit_fifo_dlx_sup defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.425204+00:00 [info] <0.216.0> Running boot step core_initialized defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.425428+00:00 [info] <0.216.0> Running boot step rabbit_channel_tracking_handler defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.426788+00:00 [info] <0.216.0> Running boot step rabbit_classic_queue defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.427238+00:00 [info] <0.216.0> Running boot step rabbit_connection_tracking_handler defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.427529+00:00 [info] <0.216.0> Running boot step rabbit_definitions_hashing defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:48.427782+00:00 [info] <0.216.0> Running boot step rabbit_exchange_parameters defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.448384+00:00 [info] <0.216.0> Running boot step rabbit_policies defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.450127+00:00 [info] <0.216.0> Running boot step rabbit_policy defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.450498+00:00 [info] <0.216.0> Running boot step rabbit_quorum_memory_manager defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.452605+00:00 [info] <0.216.0> Running boot step rabbit_quorum_queue defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.455569+00:00 [info] <0.216.0> Running boot step rabbit_stream_coordinator defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.456243+00:00 [info] <0.216.0> Running boot step rabbit_vhost_limit defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.456980+00:00 [info] <0.216.0> Running boot step rabbit_mgmt_db_handler defined by app rabbitmq_management_agent
zulip-rabbitmq-1  | 2025-04-08 09:29:49.458485+00:00 [info] <0.216.0> Management plugin: using rates mode 'basic'
zulip-rabbitmq-1  | 2025-04-08 09:29:49.461113+00:00 [info] <0.216.0> Running boot step recovery defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.537207+00:00 [info] <0.216.0> Running boot step empty_db_check defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:49.537471+00:00 [info] <0.216.0> Will seed default virtual host and user...
zulip-rabbitmq-1  | 2025-04-08 09:29:49.537947+00:00 [info] <0.216.0> Adding vhost '/' (description: 'Default virtual host', tags: [])
zulip-rabbitmq-1  | 2025-04-08 09:29:50.970793+00:00 [info] <0.532.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@f6df3f5b154e/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists
zulip-rabbitmq-1  | 2025-04-08 09:29:50.974772+00:00 [info] <0.532.0> Setting segment_entry_count for vhost '/' with 0 queues to '2048'
zulip-rabbitmq-1  | 2025-04-08 09:29:51.164767+00:00 [info] <0.532.0> Starting message stores for vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:29:51.169703+00:00 [info] <0.532.0> Started message store of type transient for vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:29:51.172430+00:00 [warning] <0.546.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch
zulip-rabbitmq-1  | 2025-04-08 09:29:51.175696+00:00 [info] <0.532.0> Started message store of type persistent for vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:29:51.176350+00:00 [info] <0.532.0> Recovering 0 queues of type rabbit_classic_queue took 199ms
zulip-rabbitmq-1  | 2025-04-08 09:29:51.176620+00:00 [info] <0.532.0> Recovering 0 queues of type rabbit_quorum_queue took 0ms
zulip-rabbitmq-1  | 2025-04-08 09:29:51.176899+00:00 [info] <0.532.0> Recovering 0 queues of type rabbit_stream_queue took 0ms
zulip-rabbitmq-1  | 2025-04-08 09:29:51.262156+00:00 [info] <0.216.0> Created user 'zulip'
zulip-rabbitmq-1  | 2025-04-08 09:29:51.492286+00:00 [info] <0.216.0> Successfully set user tags for user 'zulip' to [administrator]
zulip-rabbitmq-1  | 2025-04-08 09:29:51.560746+00:00 [info] <0.216.0> Successfully set permissions for user 'zulip' in virtual host '/' to '.*', '.*', '.*'
zulip-rabbitmq-1  | 2025-04-08 09:29:51.561056+00:00 [info] <0.216.0> Running boot step rabbit_observer_cli defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.561722+00:00 [info] <0.216.0> Running boot step rabbit_core_metrics_gc defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.563637+00:00 [info] <0.216.0> Running boot step background_gc defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.564944+00:00 [info] <0.216.0> Running boot step routing_ready defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.565197+00:00 [info] <0.216.0> Running boot step pre_flight defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.565707+00:00 [info] <0.216.0> Running boot step notify_cluster defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.565848+00:00 [info] <0.216.0> Running boot step networking defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.565956+00:00 [info] <0.216.0> Running boot step rabbit_quorum_queue_periodic_membership_reconciliation defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.567430+00:00 [info] <0.216.0> Running boot step definition_import_worker_pool defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.568134+00:00 [info] <0.270.0> Starting worker pool 'definition_import_pool' with 4 processes in it
zulip-rabbitmq-1  | 2025-04-08 09:29:51.569233+00:00 [info] <0.216.0> Running boot step cluster_name defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.569640+00:00 [info] <0.216.0> Initialising internal cluster ID to 'rabbitmq-cluster-id-4TgNqX3TeqxtyPnL7KDNMw'
zulip-rabbitmq-1  | 2025-04-08 09:29:51.835010+00:00 [info] <0.216.0> Running boot step virtual_host_reconciliation defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.835800+00:00 [info] <0.216.0> Running boot step direct_client defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.836483+00:00 [info] <0.216.0> Running boot step cluster_tags defined by app rabbit
zulip-rabbitmq-1  | 2025-04-08 09:29:51.903740+00:00 [info] <0.583.0> Resetting node maintenance status
zulip-rabbitmq-1  | 2025-04-08 09:29:52.295005+00:00 [info] <0.606.0> Prometheus metrics: HTTP (non-TLS) listener started on port 15692
zulip-rabbitmq-1  | 2025-04-08 09:29:52.295572+00:00 [info] <0.583.0> Ready to start client connection listeners
zulip-rabbitmq-1  | 2025-04-08 09:29:52.301970+00:00 [info] <0.650.0> started TCP listener on [::]:5672
zulip-rabbitmq-1  |  completed with 3 plugins.
zulip-rabbitmq-1  | 2025-04-08 09:29:52.610112+00:00 [info] <0.583.0> Server startup complete; 3 plugins started.
zulip-rabbitmq-1  | 2025-04-08 09:29:52.610112+00:00 [info] <0.583.0>  * rabbitmq_prometheus
zulip-rabbitmq-1  | 2025-04-08 09:29:52.610112+00:00 [info] <0.583.0>  * rabbitmq_management_agent
zulip-rabbitmq-1  | 2025-04-08 09:29:52.610112+00:00 [info] <0.583.0>  * rabbitmq_web_dispatch
zulip-rabbitmq-1  | 2025-04-08 09:29:52.710559+00:00 [info] <0.10.0> Time to start RabbitMQ: 28077 ms
zulip-rabbitmq-1  | 2025-04-08 09:31:48.552770+00:00 [info] <0.677.0> accepting AMQP connection 172.20.0.6:48094 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:31:50.083001+00:00 [info] <0.677.0> connection 172.20.0.6:48094 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:04.467998+00:00 [info] <0.700.0> accepting AMQP connection 172.20.0.6:48110 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:04.503308+00:00 [info] <0.704.0> accepting AMQP connection 172.20.0.6:48108 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:05.562217+00:00 [info] <0.700.0> connection 172.20.0.6:48110 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:05.569668+00:00 [info] <0.715.0> accepting AMQP connection 172.20.0.6:48116 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:05.590116+00:00 [info] <0.715.0> connection 172.20.0.6:48116 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:05.588225+00:00 [info] <0.704.0> connection 172.20.0.6:48108 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:06.820166+00:00 [info] <0.744.0> accepting AMQP connection 172.20.0.6:48122 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:07.036901+00:00 [info] <0.744.0> connection 172.20.0.6:48122 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:22.914828+00:00 [info] <0.765.0> accepting AMQP connection 172.20.0.6:48138 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:23.080457+00:00 [info] <0.769.0> accepting AMQP connection 172.20.0.6:48142 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:23.102747+00:00 [info] <0.769.0> connection 172.20.0.6:48142 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:23.141821+00:00 [info] <0.781.0> accepting AMQP connection 172.20.0.6:48146 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:23.149303+00:00 [info] <0.765.0> connection 172.20.0.6:48138 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:23.151536+00:00 [info] <0.781.0> connection 172.20.0.6:48146 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:26.406921+00:00 [info] <0.801.0> accepting AMQP connection 172.20.0.6:48156 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:26.650121+00:00 [info] <0.807.0> accepting AMQP connection 172.20.0.6:48162 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:26.785198+00:00 [info] <0.801.0> connection 172.20.0.6:48156 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:27.127408+00:00 [info] <0.807.0> connection 172.20.0.6:48162 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:29.660957+00:00 [info] <0.833.0> accepting AMQP connection 172.20.0.6:48168 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:29.996074+00:00 [info] <0.833.0> connection 172.20.0.6:48168 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:32.879754+00:00 [info] <0.849.0> accepting AMQP connection 172.20.0.6:48172 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:32.887277+00:00 [info] <0.849.0> connection 172.20.0.6:48172 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:35.549128+00:00 [info] <0.865.0> accepting AMQP connection 172.20.0.6:48178 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:35.555074+00:00 [info] <0.865.0> connection 172.20.0.6:48178 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:39.990806+00:00 [info] <0.889.0> accepting AMQP connection 172.20.0.6:48194 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:39.993140+00:00 [info] <0.885.0> accepting AMQP connection 172.20.0.6:48192 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:39.993562+00:00 [info] <0.881.0> accepting AMQP connection 172.20.0.6:48190 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:39.998449+00:00 [info] <0.889.0> connection 172.20.0.6:48194 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:40.016727+00:00 [info] <0.896.0> accepting AMQP connection 172.20.0.6:48196 -> 172.20.0.5:5672
zulip-rabbitmq-1  | 2025-04-08 09:32:40.017159+00:00 [info] <0.881.0> connection 172.20.0.6:48190 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:40.021839+00:00 [info] <0.885.0> connection 172.20.0.6:48192 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'
zulip-rabbitmq-1  | 2025-04-08 09:32:40.258600+00:00 [info] <0.896.0> connection 172.20.0.6:48196 -> 172.20.0.5:5672: user 'zulip' authenticated and granted access to vhost '/'

@Pezhvak
Copy link

Pezhvak commented Apr 8, 2025

you have problem in your reverse nginx, make sure you have set your public domain in your configurations and your nginx setup is working correctly.

@LiquidatorIO
Copy link
Author

I will try googling how to set it up. Thank you
Is it possible to use only IP given by tailscale? I don't want domains.

@Pezhvak
Copy link

Pezhvak commented Apr 8, 2025

I will try googling how to set it up. Thank you Is it possible to use only IP given by tailscale? I don't want domains.

i haven't tried that

@LiquidatorIO
Copy link
Author

OK. I am installing Nginx now and will figure it out. Thank you for your help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants