Having a few issues

Hi, I am new to n8n so I presume I’m doing something wrong, but I’m having a couple of issues.

I can’t get the chat to work. It just continually gives me the typing gif:

Also, the “Stop listening” button doesn’t seem to do anything. I have clicked it three times and it still says “Stop listening”
image

Here is my setup for the chat:

I also tried submitting a form:


and when I hit submit, it still says it’s listening:

And, again, if I hit “Stop listening”, nothing seems to happen.

Thanks in advance.

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:

Thanks for the quick response @n8n.

  • n8n version: most recent (v1.67.1)
  • db: postgres 16
  • EXCECUTTIONS_PROCESS: default
  • Running n8n via docker
  • operating system: ubuntu 20.04.2 LTS

Heres the docker-compose.yml file if you need it
version: “3.9”

services:
n8n:
image: n8nio/n8n:1.67.1
ports:
- “25678:5678”
environment:
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=<N8N_User>
- N8N_BASIC_AUTH_PASSWORD=<N8N_Pwd>
- DB_TYPE=postgresdb
- DB_POSTGRESDB_HOST=db
- DB_POSTGRESDB_PORT=5432
- DB_POSTGRESDB_DATABASE=<DB_Name>
- DB_POSTGRESDB_USER=<DB_User>
- DB_POSTGRESDB_PASSWORD=<DB_Pwd>
- NODE_FUNCTION_ALLOW_EXTERNAL=axios,qs
- WEBHOOK_URL=
depends_on:
- db
restart: unless-stopped

db:
    image: postgres:16.0
    volumes:
        - db-data:/var/lib/postgresql/data
    environment:
        - POSTGRES_USER=<DB_User>
        - POSTGRES_PASSWORD=<DB_Pwd>
        - POSTGRES_DB=<DB_Name>
    restart: unless-stopped

volumes:
db-data:

Sorry for the multiple posts. I didn’t realize my posts were getting automatically flagged and hidden.

Hey @paulg

To start it would be worth dropping the n8n_basic_auth options, they have not been used in over a year. Oddly I have seen people using them a few times did you use some AI or an outdated tutorial to set up n8n?

Looking at the issue you have described it sounds like maybe you are using nginx as a reverse proxy and have not configured it to use websockets, if you are not using nginx can you let me know.

1 Like

Thanks @Jon
I did resolve this today and jsut didn’t get around to posting here yet. It was an Nginx issue that was blocking the SSE

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