When I try to access my site I get an expressjs error 404 saying: “Cannot GET /”
If I remove the EXECUTIONS_MODE=”queue” env variable everything works fine, only not in queue mode. But as soon as I re-enable it, it start throwing the “Cannot GET /” error
Also, if I go to /healthz and /healthz/readiness I get { “status“: “ok” }, so it seems to be working, just the UI will not answer. I see pretty much no error logs:
Hey, In queue mode, by default, the main process only handles API/webhook routing and doesn’t serve the web UI. The Cannot GET error occurs because the main process is missing the required configuration to serve the frontend.
Add to your N8N_BASE_ENV_VARIABLES:
const N8N_BASE_ENV_VARIABLES = {
// ... your existing variables ...
EXECUTIONS_MODE: "queue",
// ADD THESE CRUCIAL VARIABLES:
N8N_DISABLE_PRODUCTION_MAIN_PROCESS: "false", // Enable UI serving
N8N_MULTI_MAIN_SETUP_ENABLED: "true", // Enable multi-main setup
EXECUTIONS_PROCESS: "main", // Process executions on main
OFFLOAD_MANUAL_EXECUTIONS_TO_WORKERS: "true", // Send manual executions to workers
};
Updated n8nService Configuration (just a snippet):
const n8nService = new sst.aws.Service("N8nService", {
cluster,
link: [db, redis],
cpu: "1 vCPU",
memory: "2 GB",
capacity: {
fargate: { base: 1, weight: 1 }
},
containers: [
{
name: "n8n",
image: "n8nio/n8n:stable",
command: ["start"], // This is correct for main process
volumes: [
{
efs: fileSystem,
path: "/home/node/.n8n",
},
],
environment: {
...N8N_BASE_ENV_VARIABLES,
N8N_PATH: "/",
N8N_HOST: domain,
N8N_EDITOR_BASE_URL: `https://${domain}`,
WEBHOOK_URL: `https://${domain}`,
N8N_WEBHOOK_URL: `https://${domain}`,
// MAIN PROCESS SPECIFIC:
N8N_DISABLE_PRODUCTION_MAIN_PROCESS: "false", // KEY FIX
N8N_MULTI_MAIN_SETUP_ENABLED: "true",
EXECUTIONS_PROCESS: "main",
},
},
],
// ... rest of config
});
Sure, sorry for not sharing before. And thank you for your support
Main Service Logs from Cloudwatch on debug mode:
| 1758626763801 | [WARN tini (8)] Tini is not running as PID 1 and isn’t registered as a child subreaper.
| 1758626763801 | Zombie processes will not be re-parented to Tini, so zombie reaping won’t work.
| 1758626763801 | To fix the problem, use the -s option or set the environment variable TINI_SUBREAPER to register Tini as a child subreaper, or run Tini as PID 1.
| 1758626767408 | 2025-09-23T11:26:07.406Z | e[34mdebuge[39m | e[34mUser settings loaded from: /home/node/.n8n/confige[39m {“file”:“instance-settings.js”,“function”:“loadOrCreate”}
| 1758626767452 | 2025-09-23T11:26:07.452Z | e[34mdebuge[39m | e[34mReceived CLI commande[39m {“execPath”:“/usr/local/bin/node”,“scriptPath”:“/usr/local/bin/n8n”,“args”:,“flags”:{},“file”:“cli-parser.js”,“function”:“parse”}
| 1758626767542 | 2025-09-23T11:26:07.542Z | e[32minfoe[39m | e[32mInitializing n8n processe[39m {“file”:“start.js”,“function”:“init”}
| 1758626767594 | 2025-09-23T11:26:07.594Z | e[34mdebuge[39m | e[34mStarting main instance in scaling modee[39m {“scopes”:[“scaling”],“file”:“start.js”,“function”:“init”}
| 1758626767597 | 2025-09-23T11:26:07.597Z | e[34mdebuge[39m | e[34mHost ID: main-ip-10-0-8-39.ec2.internale[39m {“scopes”:[“scaling”],“file”:“start.js”,“function”:“init”}
| 1758626767840 | 2025-09-23T11:26:07.840Z | e[34mdebuge[39m | e[34mLazy-loading nodes and credentials from n8n-nodes-basee[39m {“nodes”:483,“credentials”:385,“file”:“lazy-package-directory-loader.js”,“function”:“loadAll”}
| 1758626767897 | 2025-09-23T11:26:07.897Z | e[34mdebuge[39m | e[34mLazy-loading nodes and credentials from @n8n/n8n-nodes-langchaine[39m {“nodes”:101,“credentials”:23,“file”:“lazy-package-directory-loader.js”,“function”:“loadAll”}
| 1758626768251 | 2025-09-23T11:26:08.251Z | e[32minfoe[39m | e[32mn8n ready on ::, port 5678e[39m {“file”:“abstract-server.js”,“function”:“init”}
| 1758626768265 | 2025-09-23T11:26:08.265Z | e[34mdebuge[39m | e[34mInitializing AuthRolesService…e[39m {“file”:“auth.roles.service.js”,“function”:“init”}
| 1758626768275 | 2025-09-23T11:26:08.274Z | e[34mdebuge[39m | e[34mNo scopes to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncScopes”}
| 1758626768297 | 2025-09-23T11:26:08.297Z | e[34mdebuge[39m | e[34mUpdating 2 global roles…e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”}
| 1758626768341 | 2025-09-23T11:26:08.341Z | e[34mdebuge[39m | e[34mglobal roles updated successfully.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”}
| 1758626768342 | 2025-09-23T11:26:08.342Z | e[34mdebuge[39m | e[34mNo project roles to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”}
| 1758626768342 | 2025-09-23T11:26:08.342Z | e[34mdebuge[39m | e[34mNo credential roles to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”}
| 1758626768342 | 2025-09-23T11:26:08.342Z | e[34mdebuge[39m | e[34mNo workflow roles to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”}
| 1758626768342 | 2025-09-23T11:26:08.342Z | e[34mdebuge[39m | e[34mAuthRolesService initialized successfully.e[39m {“file”:“auth.roles.service.js”,“function”:“init”}
| 1758626768344 | 2025-09-23T11:26:08.343Z | e[33mwarne[39m | e[33me[39m
| 1758626768344 | e[33mThere are deprecations related to your environment variables. Please take the recommended actions to update your configuration:e[39m
| 1758626768344 | e[33m - N8N_RUNNERS_ENABLED → Running n8n without task runners is deprecated. Task runners will be turned on by default in a future version. Please set N8N_RUNNERS_ENABLED=true to enable task runners now and avoid potential issues in the future.
| 1758626768344 | e[33m - OFFLOAD_MANUAL_EXECUTIONS_TO_WORKERS → Running manual executions in the main instance in scaling mode is deprecated. Manual executions will be routed to workers in a future version. Please set OFFLOAD_MANUAL_EXECUTIONS_TO_WORKERS=true to offload manual executions to workers and avoid potential issues in the future. Consider increasing memory available to workers and reducing memory available to main.
| 1758626768344 | e[33m - EXECUTIONS_PROCESS → Remove this environment variable; it is no longer needed.e
| 1758626768344 | e[33m - N8N_BLOCK_ENV_ACCESS_IN_NODE → The default value of N8N_BLOCK_ENV_ACCESS_IN_NODE will be changed from false to true in a future version. If you need to access environment variables from the Code Node or from expressions, please set N8N_BLOCK_ENV_ACCESS_IN_NODE=false. e[39m
| 1758626768344 | e[33me[39m {“file”:“deprecation.service.js”,“function”:“warn”}
| 1758626768351 | 2025-09-23T11:26:08.351Z | e[34mdebuge[39m | e[34mStarted Redis client publisher(n8n)e[39m {“scopes”:[“redis”,“scaling”],“type”:“publisher(n8n)”,“host”:“http://clustercfg.workflows-test-n8nrediscluster-mtocrrev.k5wios.use1.cache.amazonaws.com”,“port”:6379,“file”:“redis-client.service.js”,“function”:“createRegularClient”}
| 1758626768407 | 2025-09-23T11:26:08.407Z | e[34mdebuge[39m | e[34mRegistered a “reload-license” event handler on License#reloade[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768407 | 2025-09-23T11:26:08.407Z | e[34mdebuge[39m | e[34mRegistered a “relay-execution-lifecycle-event” event handler on Push#handleRelayExecutionLifecycleEvente[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768407 | 2025-09-23T11:26:08.407Z | e[34mdebuge[39m | e[34mRegistered a “clear-test-webhooks” event handler on TestWebhooks#handleClearTestWebhookse[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768407 | 2025-09-23T11:26:08.407Z | e[34mdebuge[39m | e[34mRegistered a “display-workflow-activation” event handler on ActiveWorkflowManager#handleDisplayWorkflowActivatione[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768407 | 2025-09-23T11:26:08.407Z | e[34mdebuge[39m | e[34mRegistered a “display-workflow-deactivation” event handler on ActiveWorkflowManager#handleDisplayWorkflowDeactivatione[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768407 | 2025-09-23T11:26:08.407Z | e[34mdebuge[39m | e[34mRegistered a “display-workflow-activation-error” event handler on ActiveWorkflowManager#handleDisplayWorkflowActivationErrore[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768408 | 2025-09-23T11:26:08.407Z | e[34mdebuge[39m | e[34mRegistered a “add-webhooks-triggers-and-pollers” event handler on ActiveWorkflowManager#handleAddWebhooksTriggersAndPollerse[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768408 | 2025-09-23T11:26:08.408Z | e[34mdebuge[39m | e[34mRegistered a “remove-triggers-and-pollers” event handler on ActiveWorkflowManager#handleRemoveTriggersAndPollerse[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768408 | 2025-09-23T11:26:08.408Z | e[34mdebuge[39m | e[34mRegistered a “restart-event-bus” event handler on MessageEventBus#restarte[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768409 | 2025-09-23T11:26:08.408Z | e[34mdebuge[39m | e[34mRegistered a “response-to-get-worker-status” event handler on WorkerStatusService#handleWorkerStatusResponsee[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768409 | 2025-09-23T11:26:08.409Z | e[34mdebuge[39m | e[34mRegistered a “community-package-update” event handler on CommunityPackagesService#handleInstallEvente[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768409 | 2025-09-23T11:26:08.409Z | e[34mdebuge[39m | e[34mRegistered a “community-package-install” event handler on CommunityPackagesService#handleInstallEvente[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768409 | 2025-09-23T11:26:08.409Z | e[34mdebuge[39m | e[34mRegistered a “community-package-uninstall” event handler on CommunityPackagesService#handleUninstallEvente[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”}
| 1758626768410 | 2025-09-23T11:26:08.410Z | e[34mdebuge[39m | e[34mStarted Redis client subscriber(n8n)e[39m {“scopes”:[“redis”,“scaling”],“type”:“subscriber(n8n)”,“host”:“I-removed-this-because-forum-wont-allow-for-links”,“port”:6379,“file”:“redis-client.service.js”,“function”:“createRegularClient”}
Worker Logs:
| 1758626804867 | [WARN tini (8)] Tini is not running as PID 1 and isn’t registered as a child subreaper. |
| 1758626804867 | Zombie processes will not be re-parented to Tini, so zombie reaping won’t work. |
| 1758626804867 | To fix the problem, use the -s option or set the environment variable TINI_SUBREAPER to register Tini as a child subreaper, or run Tini as PID 1. |
| 1758626811788 | 2025-09-23T11:26:51.779Z | e[34mdebuge[39m | e[34mUser settings loaded from: /home/node/.n8n/confige[39m {“file”:“instance-settings.js”,“function”:“loadOrCreate”} |
| 1758626811871 | 2025-09-23T11:26:51.871Z | e[34mdebuge[39m | e[34mReceived CLI commande[39m {“execPath”:“/usr/local/bin/node”,“scriptPath”:“/usr/local/bin/n8n”,“args”:[“worker”],“flags”:{“concurrency”:10},“file”:“cli-parser.js”,“function”:“parse”} |
| 1758626811878 | 2025-09-23T11:26:51.877Z | e[31merrore[39m | e[31mLast session crashede[39m {“file”:“crash-journal.js”,“function”:“init”} |
| 1758626821895 | 2025-09-23T11:27:01.895Z | e[34mdebuge[39m | e[34mStarting n8n worker…e[39m {“scopes”:[“scaling”],“file”:“worker.js”,“function”:“init”} |
| 1758626821895 | 2025-09-23T11:27:01.895Z | e[34mdebuge[39m | e[34mHost ID: worker-ip-10-0-10-117.ec2.internale[39m {“scopes”:[“scaling”],“file”:“worker.js”,“function”:“init”} |
| 1758626822375 | 2025-09-23T11:27:02.375Z | e[34mdebuge[39m | e[34mLazy-loading nodes and credentials from n8n-nodes-basee[39m {“nodes”:483,“credentials”:385,“file”:“lazy-package-directory-loader.js”,“function”:“loadAll”} |
| 1758626822390 | 2025-09-23T11:27:02.389Z | e[34mdebuge[39m | e[34mLazy-loading nodes and credentials from @n8n/n8n-nodes-langchaine[39m {“nodes”:101,“credentials”:23,“file”:“lazy-package-directory-loader.js”,“function”:“loadAll”} |
| 1758626823169 | 2025-09-23T11:27:03.168Z | e[34mdebuge[39m | e[34mInitializing AuthRolesService…e[39m {“file”:“auth.roles.service.js”,“function”:“init”} |
| 1758626823183 | 2025-09-23T11:27:03.182Z | e[34mdebuge[39m | e[34mNo scopes to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncScopes”} |
| 1758626823208 | 2025-09-23T11:27:03.208Z | e[34mdebuge[39m | e[34mNo global roles to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”} |
| 1758626823209 | 2025-09-23T11:27:03.209Z | e[34mdebuge[39m | e[34mNo project roles to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”} |
| 1758626823210 | 2025-09-23T11:27:03.209Z | e[34mdebuge[39m | e[34mNo credential roles to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”} |
| 1758626823210 | 2025-09-23T11:27:03.210Z | e[34mdebuge[39m | e[34mNo workflow roles to update.e[39m {“file”:“auth.roles.service.js”,“function”:“syncRoles”} |
| 1758626823210 | 2025-09-23T11:27:03.210Z | e[34mdebuge[39m | e[34mAuthRolesService initialized successfully.e[39m {“file”:“auth.roles.service.js”,“function”:“init”} |
| 1758626823216 | 2025-09-23T11:27:03.216Z | e[33mwarne[39m | e[33me[39m |
| 1758626823216 | e[33mThere are deprecations related to your environment variables. Please take the recommended actions to update your configuration:e[39m |
| 1758626823216 | e[33m - N8N_RUNNERS_ENABLED → Running n8n without task runners is deprecated. Task runners will be turned on by default in a future version. Please set N8N_RUNNERS_ENABLED=true to enable task runners now and avoid potential issues in the future.e[39m |
| 1758626823216 | e[33m - EXECUTIONS_PROCESS → Remove this environment variable; it is no longer needed.e[39m |
| 1758626823216 | e[33m - N8N_BLOCK_ENV_ACCESS_IN_NODE → The default value of N8N_BLOCK_ENV_ACCESS_IN_NODE will be changed from false to true in a future version. If you need to access environment variables from the Code Node or from expressions, please set N8N_BLOCK_ENV_ACCESS_IN_NODE=false. Learn more: e[39m |
| 1758626823216 | e[33me[39m {“file”:“deprecation.service.js”,“function”:“warn”} |
| 1758626823267 | 2025-09-23T11:27:03.267Z | e[34mdebuge[39m | e[34mStarted Redis client publisher(n8n)e[39m {“scopes”:[“redis”,“scaling”],“type”:“publisher(n8n)”,“host”:“I-removed-this-because-forum-wont-allow-for-links”,“port”:6379,“file”:“redis-client.service.js”,“function”:“createRegularClient”} |
| 1758626823308 | 2025-09-23T11:27:03.308Z | e[34mdebuge[39m | e[34m[license SDK] initializing for deviceFingerprint 976bb4ef9f3c57dfe350ffb6843537e18a13fd50940b3164983c9161fd6cb307e[39m {“scopes”:[“license”],“file”:“LicenseManager.js”,“function”:“log”} |
| 1758626823313 | 2025-09-23T11:27:03.312Z | e[32minfoe[39m | e[32m[license SDK] Skipping renewal on init: renewOnInit is disabled in confige[39m {“scopes”:[“license”],“file”:“LicenseManager.js”,“function”:“log”} |
| 1758626823313 | 2025-09-23T11:27:03.313Z | e[32minfoe[39m | e[32m[license SDK] Skipping renewal on init: autoRenewEnabled is disabled in confige[39m {“scopes”:[“license”],“file”:“LicenseManager.js”,“function”:“log”} |
| 1758626823313 | 2025-09-23T11:27:03.313Z | e[32minfoe[39m | e[32m[license SDK] Skipping renewal on init: license cert is not initializede[39m {“scopes”:[“license”],“file”:“LicenseManager.js”,“function”:“log”} |
| 1758626823313 | 2025-09-23T11:27:03.313Z | e[34mdebuge[39m | e[34mLicense initializede[39m {“scopes”:[“license”],“file”:“license.js”,“function”:“init”} |
| 1758626823313 | 2025-09-23T11:27:03.313Z | e[34mdebuge[39m | e[34mLicense init completee[39m {“scopes”:[“scaling”],“file”:“worker.js”,“function”:“init”} |
| 1758626823366 | 2025-09-23T11:27:03.366Z | e[34mdebuge[39m | e[34mBinary data service init completee[39m {“scopes”:[“scaling”],“file”:“worker.js”,“function”:“init”} |
| 1758626823367 | 2025-09-23T11:27:03.367Z | e[34mdebuge[39m | e[34mData deduplication service init completee[39m {“scopes”:[“scaling”],“file”:“worker.js”,“function”:“init”} |
| 1758626823368 | 2025-09-23T11:27:03.368Z | e[34mdebuge[39m | e[34mExternal hooks init completee[39m {“scopes”:[“scaling”],“file”:“worker.js”,“function”:“init”} |
| 1758626823368 | 2025-09-23T11:27:03.368Z | e[34mdebuge[39m | e[34mInitializing event bus…e[39m {“file”:“message-event-bus.js”,“function”:“initialize”} |
| 1758626823372 | 2025-09-23T11:27:03.372Z | e[34mdebuge[39m | e[34mInitializing event writere[39m {“file”:“message-event-bus.js”,“function”:“initialize”} |
| 1758626823377 | 2025-09-23T11:27:03.377Z | e[34mdebuge[39m | e[34mChecking for unsent event messagese[39m {“file”:“message-event-bus.js”,“function”:“initialize”} |
| 1758626823388 | 2025-09-23T11:27:03.388Z | e[34mdebuge[39m | e[34mStart logging into /home/node/.n8n/n8nEventLog-worker.log e[39m {“file”:“message-event-bus.js”,“function”:“initialize”} |
| 1758626823389 | 2025-09-23T11:27:03.388Z | e[34mdebuge[39m | e[34mMessageEventBus initializede[39m {“file”:“message-event-bus.js”,“function”:“initialize”} |
| 1758626823390 | 2025-09-23T11:27:03.390Z | e[34mdebuge[39m | e[34mEvent bus init completee[39m {“scopes”:[“scaling”],“file”:“worker.js”,“function”:“init”} |
| 1758626823678 | 2025-09-23T11:27:03.678Z | e[34mdebuge[39m | e[34mStarted Redis client client(bull)e[39m {“scopes”:[“redis”,“scaling”],“type”:“client(bull)”,“host”:“I-removed-this-because-forum-wont-allow-for-links”,“port”:6379,“file”:“redis-client.service.js”,“function”:“createRegularClient”} |
| 1758626823681 | 2025-09-23T11:27:03.681Z | e[34mdebuge[39m | e[34mStarted Redis client subscriber(bull)e[39m {“scopes”:[“redis”,“scaling”],“type”:“subscriber(bull)”,“host”:“I-removed-this-because-forum-wont-allow-for-links”,“port”:6379,“file”:“redis-client.service.js”,“function”:“createRegularClient”} |
| 1758626823682 | 2025-09-23T11:27:03.682Z | e[34mdebuge[39m | e[34mQueue setup completede[39m {“scopes”:[“scaling”],“file”:“scaling.service.js”,“function”:“setupQueue”} |
| 1758626823683 | 2025-09-23T11:27:03.683Z | e[34mdebuge[39m | e[34mWorker setup completede[39m {“scopes”:[“scaling”],“file”:“scaling.service.js”,“function”:“setupWorker”} |
| 1758626823684 | 2025-09-23T11:27:03.684Z | e[34mdebuge[39m | e[34mRegistered a “reload-license” event handler on License#reloade[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”} |
| 1758626823685 | 2025-09-23T11:27:03.685Z | e[34mdebuge[39m | e[34mRegistered a “restart-event-bus” event handler on MessageEventBus#restarte[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”} |
| 1758626823685 | 2025-09-23T11:27:03.685Z | e[34mdebuge[39m | e[34mRegistered a “get-worker-status” event handler on WorkerStatusService#publishWorkerResponsee[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”} |
| 1758626823686 | 2025-09-23T11:27:03.685Z | e[34mdebuge[39m | e[34mRegistered a “community-package-update” event handler on CommunityPackagesService#handleInstallEvente[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”} |
| 1758626823686 | 2025-09-23T11:27:03.686Z | e[34mdebuge[39m | e[34mRegistered a “community-package-install” event handler on CommunityPackagesService#handleInstallEvente[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”} |
| 1758626823686 | 2025-09-23T11:27:03.686Z | e[34mdebuge[39m | e[34mRegistered a “community-package-uninstall” event handler on CommunityPackagesService#handleUninstallEvente[39m {“scopes”:[“pubsub”],“file”:“pubsub.registry.js”,“function”:“init”} |
| 1758626823687 | 2025-09-23T11:27:03.687Z | e[34mdebuge[39m | e[34mStarted Redis client subscriber(n8n)e[39m {“scopes”:[“redis”,“scaling”],“type”:“subscriber(n8n)”,“host”:“I-removed-this-because-forum-wont-allow-for-links”,“port”:6379,“file”:“redis-client.service.js”,“function”:“createRegularClient”} |
| 1758626823690 | 2025-09-23T11:27:03.690Z | e[34mdebuge[39m | e[34mStarted Redis client bclient(bull)e[39m {“scopes”:[“redis”,“scaling”],“type”:“bclient(bull)”,“host”:“I-removed-this-because-forum-wont-allow-for-links”,“port”:6379,“file”:“redis-client.service.js”,“function”:“createRegularClient”} |
Having the same error when deploying in EKS, tried those environments but the error keeps popping, only happening with queue mode, seems to be everything working except the process that servers the static files
Fixed the issue enabling TLS in redis with QUEUE_BULL_REDIS_TLS = “true”, even with debug mode the logs wont show errors relating to the redis connection and the process which serves the frontend wont start