Skip to main contentSkip to navigation
[email protected]
Client AreaSupport
Hosting Mammoth
HostingMammothYour Data, Our Responsibility
Home
Solutions
Hosting Services
Store
Pricing
About
Blog
API
Contact

Stay Ahead of the Curve

Get the latest insights on cybersecurity, AI innovations, and enterprise data solutions delivered to your inbox.

Hosting Mammoth
HostingMammothEnterprise Solutions

Enterprise-grade data solutions. Hosting, recovery, cybersecurity, and AI-powered services for businesses worldwide.

[email protected]
Sun - Fri, 9:00am - 5:00pm

Services

  • Cloud Hosting
  • Data Recovery
  • Cybersecurity
  • Legal Support
  • MSP Services
  • Web Development
  • AI Services
  • Free Server Migration

Hosting

  • VPS Hosting (NVMe SSD)
  • VDS Hosting (NVMe)
  • Storage VPS (High SSD)
  • GPU Servers
  • Managed Services
  • Cloud Firewall
  • Load Balancer
  • One-Click Apps
  • n8n Hosting
  • Object Storage
  • FAQ

Company

  • Store
  • Pricing
  • About Us
  • Locations
  • Blog
  • Testimonials
  • Contact
  • Affiliate Program
  • White-Label
  • Terms of Service
  • Privacy Policy
  • Browser Cookies
  • SLA

Support

  • Client Area
  • Submit Ticket
  • Knowledge Base
  • Server Status
  • API Documentation

© 2026 Hosting Mammoth. All rights reserved.

Knowledge Base
Getting StartedAccount ManagementVPS HostingGPU ServersStorage VPSCloud FirewallLoad BalancerServer ManagementBilling & PaymentsSupport & TicketsAffiliate ProgramReseller ProgramMarketplace & Appsn8n HostingManaged ServicesServer MigrationAPI & DevelopersSecurityTroubleshootingGlossaryInstall Guides
  1. Home
  2. /
  3. Support
  4. /
  5. Marketplace & Apps
  6. /
  7. Popular Apps N8n
GUIDEMarketplace & Apps

Installing n8n from the Marketplace

4 min read

n8n is an open-source workflow automation platform that lets you connect apps and services to automate repetitive tasks. With the Data Mammoth Marketplace, you can deploy a fully configured n8n instance on your VPS in minutes and start building automations right away.

What Is n8n?

n8n (pronounced "n-eight-n") provides a visual workflow editor where you connect nodes representing apps and services. Each node performs an action — such as fetching data from an API, sending an email, updating a spreadsheet, or transforming data — and you link them together to create automated workflows.

For a detailed overview, see What Is n8n? — Workflow Automation.

Prerequisites

  • An active Data Mammoth VPS with at least 1 vCPU, 1 GB RAM, and 10 GB disk space (2 GB RAM recommended for production).
  • A domain name pointed to your server's IP (recommended for HTTPS access).
  • SSH access for post-installation configuration.

Installing n8n via the Marketplace

Step 1 — Open the Marketplace

  • Log in to your Data Mammoth dashboard.
  • Navigate to Marketplace or Apps.
  • Find n8n in the application list.
  • Step 2 — Configure Installation

  • Click n8n to view details.
  • Click Install.
  • Select your target server.
  • Configure:
  • - Domain — Where n8n will be accessible (e.g., n8n.example.com). - Admin Email — For the initial admin account (e.g., [email protected]). - Admin Password — A strong password for the admin user.
  • Review and click Install.
  • Step 3 — Wait for Deployment

    The installation takes approximately 3 to 7 minutes. The system:

    • Installs Node.js and n8n dependencies.
    • Configures the database (SQLite or PostgreSQL).
    • Sets up a reverse proxy with SSL.
    • Creates the admin account.
    • Starts the n8n service.

    Step 4 — Access n8n

    Once complete:

  • Navigate to https://n8n.example.com (or your configured domain).
  • Log in with your admin credentials.
  • You will see the n8n workflow editor ready for use.
  • Post-Installation Setup

    Configure Email Notifications

    Set up SMTP for n8n to send email notifications from workflows:

  • Connect to your server via SSH.
  • Edit the n8n environment configuration file.
  • Add SMTP settings:
  • text
    N8N_EMAIL_MODE=smtp
    N8N_SMTP_HOST=smtp.example.com
    N8N_SMTP_PORT=587
    [email protected]
    N8N_SMTP_PASS=your_smtp_password
    N8N_SMTP_SSL=true

  • Restart the n8n service.
  • Set Up Timezone

    Configure n8n to use your timezone for scheduling:

    text
    GENERIC_TIMEZONE=America/New_York

    Enable Webhook Security

    If you use webhook triggers in your workflows, secure them:

    • Use unique, hard-to-guess webhook paths.
    • Consider adding authentication to webhook endpoints.
    • Restrict webhook access through firewall rules if possible.

    Creating Your First Workflow

  • In the n8n editor, click Add workflow or the + button.
  • Add a trigger node — this starts the workflow (e.g., Schedule, Webhook, or a service event).
  • Add action nodes — connect services and actions (e.g., HTTP Request, Email, Spreadsheet).
  • Connect nodes by dragging from one node's output to another's input.
  • Configure each node with the required credentials and settings.
  • Click Execute Workflow to test.
  • Once working, toggle the workflow to Active for automatic execution.
  • For detailed workflow guides, see Creating Your First n8n Workflow.

    Popular n8n Use Cases

    AutomationDescription
    Form submissionsSend form data to a spreadsheet, CRM, or email
    Social mediaAuto-post content across platforms
    Data syncKeep databases and services in sync
    NotificationsAlert your team when specific events occur
    Report generationGenerate and email reports on a schedule
    Lead managementRoute leads from forms to your CRM
    Backup alertsMonitor backup status and send notifications

    Managing Your n8n Instance

    Updating n8n

    Keep n8n updated for security patches and new features:

    bash
    # If installed with npm
    npm update -g n8n

    If installed with Docker

    docker compose pull docker compose up -d

    Backing Up n8n

    Back up your workflows and credentials regularly:

    bash
    # Export all workflows via CLI
    n8n export:workflow --all --output=workflows_backup.json

    Back up the database

    SQLite

    cp ~/.n8n/database.sqlite ~/.n8n/database.sqlite.backup

    PostgreSQL

    pg_dump -U n8n n8n_db > n8n_backup.sql

    Monitoring Performance

    n8n workflows consume server resources during execution. Monitor:

    • CPU and RAM usage during workflow runs.
    • Database size growth over time.
    • Execution logs for failed workflows.
    See Monitoring Server Performance.

    What to Do Next

    • Getting Started with Your n8n Instance — Full n8n setup guide.
    • Creating Your First n8n Workflow — Build your first automation.
    • Popular n8n Integrations — Connect n8n to popular services.
    • Managing Installed Apps — Maintain your installation.

    Was this article helpful?

    ← Back to Marketplace & AppsBrowse all categories →

    Still have questions?

    Contact Support →Submit a Ticket