Stop Fighting Linux Terminals

Install n8n in 1 Click. Not 1 Hour.

Hostinger VPS requires manual Docker setup, SSH keys, and constant maintenance. OpenHosst gives you a fully managed n8n instance for just $1/month.

Start 1-Click Setup ($1/mo) View Hostinger Guide
Earth

The "Time-to-Workflow" Comparison

Why spend hours configuring when you can start automating in minutes?

Hostinger VPS Time: ~45 Mins

# 1. SSH into server

ssh root@192.168.x.x


# 2. Install Docker

apt-get update && apt-get install docker.io

curl -L "https://github.com/docker/compose..."


# 3. Configure Traefik SSL

nano docker-compose.yml

Error: Port 80 bind failed...

# Debugging firewall...

Requires Maintenance
Security Updates Manual

Monthly Cost $8.99/mo
Commitment 48 Months (Locked)
OpenHosst Time: 2 Mins

n8n is Ready!

SSL & DNS Auto-Configured

Open Editor
Monthly Cost $1.00/mo
Commitment Cancel Anytime
For DIY Enthusiasts Only

Manual Guide: Install & Update n8n on Hostinger

Warning: This requires Linux knowledge. If you break your VPS, Hostinger support may not help you.

1 How to Install n8n on Hostinger (Docker)

1. SSH into your VPS.

2. Install Docker Compose:

apt-get update && apt-get install docker-compose

3. Create a docker-compose.yml file:

version: '3'
services:
  n8n:
    image: n8nio/n8n
    ports:
      - "5678:5678"
    volumes:
      - ~/.n8n:/home/node/.n8n

Note: This exposes n8n on HTTP. For HTTPS (Secure), you must configure Nginx/Traefik and Certbot manually.

2 How to Update n8n on Hostinger

To update n8n, you must recreate the container:

docker-compose down
docker pull n8nio/n8n:latest
docker-compose up -d

If you used a custom volume mapping, ensure you don't delete your database file, or you will lose all workflows.

3 Fix "Cargar n8n en VPS de Hostinger Error"

If n8n isn't loading, it's usually the UFW Firewall.

ufw allow 5678/tcp

Also check Hostinger's panel firewall settings to ensure the port is open to the public.

Too Complicated?

Skip the terminal commands. OpenHosst handles updates, SSL, and firewalls for you automatically.

Get Managed n8n for $1

Hostinger n8n FAQs

Is there a Hostinger n8n coupon?

Hostinger coupons usually require a 48-month prepay to get the lowest price. OpenHosst is $1/month with no lock-in.

How to install SSL on Hostinger VPS?

You must install Certbot and configure Nginx reverse proxy manually. OpenHosst provides free, auto-renewing SSL certificates automatically.

Can I update n8n automatically?

On Hostinger, you must manually pull Docker images. On OpenHosst, updates are handled via a simple 1-click dashboard action.

Why is my n8n Queue Mode not working?

Queue mode requires Redis and separate worker containers. Configuring this on a single Hostinger VPS is complex. OpenHosst handles scaling logic for you.