Cannot register self-hosted community instance: No "Unlock" option

Describe the problem/error/question

I want to register my self-hosted community instance to unlock additional features as described here

But in my SettingsUsage and Plan, I don’t see an “Unlock” option as described in the documentation.

Screenshot:

What is the error message (if any)?

-

Already tried

  • Upgrading to the newest version
  • Checking for the N8N_HIDE_USAGE_PAGE environment variable - not set in compose.yaml or execution environment

Information on your n8n setup

  • n8n version: 1.111.0 (just upgraded)
  • Database (default: SQLite): default
  • n8n EXECUTIONS_PROCESS setting (default: own, main): default
  • Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
  • Operating system: Ubuntu 22.04.5 LTS

compose.yaml

services:
  n8n:
    image: git.REDACTED.com:REDACTED/REDACTED/n8n #1-to-1 copy of upstream image
    restart: always
    dns:
      - REDACTED
      - REDACTED
      - REDACTED
      - REDACTED
    ports:
      - "127.0.0.1:5678:5678"
    labels:
      - traefik.enable=false
    environment:
      - N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}
      - N8N_PORT=5678
      - N8N_PROTOCOL=http
      - NODE_ENV=production
      - WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/
      - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
    volumes:
      - n8n_data:/home/node/.n8n

volumes:
  n8n_data:

hello @lmd

What is this? Have you tried to do so with the latest n8n image docker.n8n.io/n8nio/n8n?

1 Like

Hi @barn4k; because of internal firewall restrictions, I have to mirror the image to a local Docker registry. I pulled the image locally using a box that has Internet access, pushed it into this registry, and then pulled the image on the n8n server. So it is an exact copy of the upstream image

hm… I have doubts that you will be able to activate the “offline” instance as the n8n would need access to the license server. Maybe that’s why you are not able to see the options.

What the button View plans is saying? Is it offline or sending you to the n8n website with prices?

It sends me to https://subscription.n8n.io/

I will temporarily allow Internet access to see if that fixes the issue. I will report back tomorrow

@barn4k
I checked the firewall and the server was already granted Internet access by a colleague on Monday. So I changed the image to docker.n8n.io/n8nio/n8n and recreated the container. And now all options are available in the Usage and Plan page.
So Internet access was not the issue, and the version number is still 1.111.0, but copying the container or not using this exact image line causes the page to be altered for some reason.
Thank you for your help! :blush:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.