Describe the problem/error/question
I’m trying to create a n8n credential that connects to the server itself.
I’m not being able to access.
I add the recently created API key and tried several different setups for the Base URL.
This is one of them:
- API Key: the correct one
- Base URL exmple:
- Base URL: http://localhost:50001/api/v1
- Base URL: http://localhost:50001
- Base URL: localhost:50001
- Base URL: http://localhost:5678/api/v1
- Base URL: http://localhost:5678
- Base URL: localhost:5678
Can some one help?
Tanks
What is the error message (if any)?
I get this error message:
" Couldn’t connect with these settings
The service refused the connection - perhaps it is offline"
Please share your workflow
no workflow created, just credential
Information on your n8n setup
- n8n version: 1.22.4
- Database (default: SQLite): SQLite
- n8n EXECUTIONS_PROCESS setting (default: own, main): default
- Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
- Operating system: boot2docker
Docker-compose file used
version: '3.5'
services:
n8n:
image: n8nio/n8n:${N8N_SOFTWARE_VERSION_TAG}
restart: always
ports:
- 50001:5678
environment:
- NODE_ENV=production
volumes:
- n8n_data:/home/node/.n8n
networks:
- internal_net
volumes:
n8n_data:
networks:
internal_net:
driver: bridge