Error after shutting down and starting it back up my n8n docker - Resovled

Describe the problem/error/question

I needed to shut down the n8n docker to run some stuff on the server. I managed to shut it down by using the follow command:

docker stop [container_id]

before doing this, I checked the ID and I found I had two servers, one for traefik and the other is the n8n. so I only shutdown the n8n server.

Now I am done with my stuff on the server and I want to bring back the n8n server.

I did this by doing this:

docker run --name=n8n-n8n-1 -it --rm --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n -d docker.n8n.io/n8nio/n8n

This seems to have start my server back as I can log in via the localhost.
but when I try to join using the https domain, I get an error of 404.

How do I fix this? I have attached the log for the traefik below.

What is the error message (if any)?

ime="2024-05-09T19:31:12Z" level=error msg="Error renewing certificate from LE: {n8n.launchifi.xyz []}" providerName=mytlschallenge.acme ACME CA="https://acme-v02.api.letsencrypt.org/directory" error="error: one or more domains had a problem:\n[n8n.launchifi.xyz] acme: error: 403 :: urn:ietf:params:acme:error:unauthorized :: Cannot negotiate ALPN protocol \"acme-tls/1\" for tls-alpn-01 challenge\n"
time="2024-05-10T17:03:14Z" level=error msg="accept tcp [::]:443: use of closed network connection" entryPointName=websecure
time="2024-05-10T17:03:14Z" level=error msg="Error while starting server: accept tcp [::]:443: use of closed network connection" entryPointName=websecure
time="2024-05-10T17:03:14Z" level=error msg="accept tcp [::]:8080: use of closed network connection" entryPointName=traefik
time="2024-05-10T17:03:14Z" level=error msg="Error while starting server: accept tcp [::]:8080: use of closed network connection" entryPointName=traefik
time="2024-05-10T17:03:14Z" level=error msg="accept tcp [::]:80: use of closed network connection" entryPointName=web
time="2024-05-10T17:03:14Z" level=error msg="Error while starting server: accept tcp [::]:80: use of closed network connection" entryPointName=web
time="2024-05-10T17:03:31Z" level=info msg="Configuration loaded from flags."
time="2024-05-10T17:03:40Z" level=error msg="Error renewing certificate from LE: {n8n.launchifi.xyz []}" providerName=mytlschallenge.acme ACME CA="https://acme-v02.api.letsencrypt.org/directory" error="error: one or more domains had a problem:\n[n8n.launchifi.xyz] acme: error: 403 :: urn:ietf:params:acme:error:unauthorized :: Cannot negotiate ALPN protocol \"acme-tls/1\" for tls-alpn-01 challenge\n"
time="2024-05-11T17:03:46Z" level=error msg="Error renewing certificate from LE: {n8n.launchifi.xyz []}" providerName=mytlschallenge.acme ACME CA="https://acme-v02.api.letsencrypt.org/directory" error="error: one or more domains had a problem:\n[n8n.launchifi.xyz] acme: error: 403 :: urn:ietf:params:acme:error:unauthorized :: Cannot negotiate ALPN protocol \"acme-tls/1\" for tls-alpn-01 challenge\n"
time="2024-05-12T17:03:49Z" level=error msg="Error renewing certificate from LE: {n8n.launchifi.xyz []}" ACME CA="https://acme-v02.api.letsencrypt.org/directory" error="error: one or more domains had a problem:\n[n8n.launchifi.xyz] acme: error: 403 :: urn:ietf:params:acme:error:unauthorized :: Cannot negotiate ALPN protocol \"acme-tls/1\" for tls-alpn-01 challenge\n" providerName=mytlschallenge.acme
time="2024-05-13T17:03:47Z" level=error msg="Error renewing certificate from LE: {n8n.launchifi.xyz []}" ACME CA="https://acme-v02.api.letsencrypt.org/directory" error="error: one or more domains had a problem:\n[n8n.launchifi.xyz] acme: error: 403 :: urn:ietf:params:acme:error:unauthorized :: Cannot negotiate ALPN protocol \"acme-tls/1\" for tls-alpn-01 challenge\n" providerName=mytlschallenge.acme
-------------- From here I started the server back up ------------------
time="2024-05-13T22:07:22Z" level=error msg="accept tcp [::]:8080: use of closed network connection" entryPointName=traefik
time="2024-05-13T22:07:22Z" level=error msg="Error while starting server: accept tcp [::]:8080: use of closed network connection" entryPointName=traefik
time="2024-05-13T22:07:22Z" level=error msg="accept tcp [::]:80: use of closed network connection" entryPointName=web
time="2024-05-13T22:07:22Z" level=error msg="Error while starting server: accept tcp [::]:80: use of closed network connection" entryPointName=web
time="2024-05-13T22:07:22Z" level=error msg="accept tcp [::]:443: use of closed network connection" entryPointName=websecure
time="2024-05-13T22:07:22Z" level=error msg="Error while starting server: accept tcp [::]:443: use of closed network connection" entryPointName=websecure
time="2024-05-13T22:07:23Z" level=info msg="Configuration loaded from flags."
time="2024-05-13T22:07:26Z" level=error msg="Error renewing certificate from LE: {n8n.launchifi.xyz []}" ACME CA="https://acme-v02.api.letsencrypt.org/directory" error="error: one or more domains had a problem:\n[n8n.launchifi.xyz] acme: error: 403 :: urn:ietf:params:acme:error:unauthorized :: Cannot negotiate ALPN protocol \"acme-tls/1\" for tls-alpn-01 challenge\n" providerName=mytlschallenge.acme
root@Launchifi:/#

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hello @Bredda
To start a stopped container you should use the command docker container start <container_id>

The command docker run will start a completely new container

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