What is the error message: I am currently install ngrok and generate the link from docker by creating new container now when I start using a pop showed me “ERROR 3200”
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
Hi @Prashant_Kumar3 Welcome to the community!
If you are using Ngrok or Cloudflare like setup which gives temporary tunnel link without payments, i recommend using NPM version of n8n as it is very easy to setup with Ngrok or cloudFlare, just install NODE.js with it you will get npm and then install n8n using npm:
And once the installation is done, before starting n8n, run NGROK to get a link on a port 5678 of localhost and once it starts then open another Command Line terminal type set WEBHOOK_URL=YOUR_NGROK_LINK press enter and then just type n8n and it will start up and will give you the same link which you have set and then it can be used using that link, just make sure to not loose connection as that would fail the Ngrok client and your n8n instance would become down.
hey, ERROR 3200 means ngrok can’t find the tunnel, which usually happens when the ngrok process isn’t running anymore or you’re hitting an old URL that expired. Free ngrok gives you a new URL every time it restarts so if you copied the link earlier and ngrok restarted since then that would explain it. Make sure both containers are actually running at the same time and grab the current URL from ngrok’s web interface at localhost:4040, also don’t forget to update your WEBHOOK_URL env var in n8n to match whatever ngrok gives you otherwise webhooks won’t route properly.