Hello!
I don’t know programming, can someone help me install and configure n8n.io?
I don’t even know where to start. A bit of jab in JSON and using Zapeir. Will there be enough such knowledge to use this product on my own?
What do you need to install the program? What are the basic settings and where to do it? I read the documentation, but did not understand where to start.
Please, help
Hello,
First welcome to the community!
That depends on where you want to install it exactly (on your computer for testing or a server).
If you want to install it just to play around a little bit and test it. You would have to first install either Node.js or Docker (recommended). How that is done depends on your operating system. So if you google “how to install docker on X” you should find some tutorials on how to do that. Once that is done you can simply follow the instructions here:
https://hub.docker.com/r/n8nio/n8n
So in the simplest way you can start n8n with this command this:
docker run -it --rm \
--name n8n \
-p 5678:5678 \
-v ~/.n8n:/root/.n8n \
n8nio/n8n \
n8n start --tunnel
On the other hand, if you want to install it on a server to run it long term “properly” it is best to get a server which runs on Ubuntu and then simply follow the step by step guide here:
I hope that helps!
Hi Jan,
I tried to set it up on a ubuntu server mentioned in Introduction | Docs. But after everything it shows 404 not found.
Welcome to the community @mahesh!
Sadly do not know how I can help here. There are literally a million reasons for a 404.
A lot of people followed that guide so I think that unless any of the packages it uses changed, it should still work. So the only thing I can think of right now without any specifics is that either the DNS record does not point to the server you did set it up on or there was some kind of mistake in the process.
So you have to check if there are any error messages from n8n, the database, traefik, … when you start the compose setup. The easiest way do to that, is instead of starting it with sudo docker-compose up -d
you leave out the -d
and just run sudo docker-compose up
.
I have reinstalled from scratch and it’s working now. Thanks