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. Troubleshooting
  6. /
  7. Forgot Password Reset
GUIDETroubleshooting

Forgot Password — How to Reset

4 min read

Forgetting a password happens to everyone. This guide covers how to reset both your Data Mammoth account password and your server's root/user password.

Resetting Your Data Mammoth Account Password

Step 1 — Go to the Login Page

Navigate to the Data Mammoth login page in your browser.

Step 2 — Click "Forgot Password"

Below the login form, click the Forgot Password or Reset Password link.

Step 3 — Enter Your Email

Enter the email address associated with your Data Mammoth account (e.g., [email protected]) and click Send Reset Link.

Step 4 — Check Your Email

Open your inbox and look for a password reset email from Data Mammoth. The email contains a link to set a new password.

If you do not receive the email:

  • Check your spam/junk folder.
  • Verify you entered the correct email address.
  • Wait a few minutes and try again.
  • If still not received, contact support. See All Ways to Contact Support.

Step 5 — Create a New Password

Click the reset link in the email and enter a new strong password:

  • At least 12 characters.
  • Mix of uppercase, lowercase, numbers, and special characters.
  • Do not reuse passwords from other services.
  • Consider using a password manager.

Step 6 — Log In

Use your new password to log in. If you have 2FA enabled, you will also need your verification code.

Resetting Your Server Root Password

If you have forgotten the root password for your Data Mammoth VPS:

Method 1 — Reset via Dashboard

  • Log in to your Data Mammoth dashboard.
  • Navigate to your server.
  • Look for a Reset Root Password option in settings.
  • Click Reset and confirm.
  • A new password will be generated and displayed (or sent via email).
  • Save the new password securely.
  • Method 2 — Reset via Web Console

    If the dashboard does not offer a password reset:

  • Open the web console.
  • Reboot the server.
  • During the GRUB boot menu, press e to edit the boot parameters.
  • Find the line starting with linux and add init=/bin/bash at the end.
  • Press Ctrl+X or F10 to boot.
  • You will get a root shell without a password.
  • Remount the filesystem as read-write:
  • bash
    mount -o remount,rw /

  • Set a new password:
  • bash
    passwd root

  • Reboot:
  • bash
    exec /sbin/init

    Method 3 — Using SSH Key Access

    If you have SSH key authentication configured with another user:

    bash
    # Log in as the non-root user
    ssh [email protected]

    Change the root password

    sudo passwd root

    Method 4 — Rescue Mode

    If other methods do not work:

  • Boot into rescue mode from the dashboard.
  • Mount the server's filesystem.
  • Chroot into it:
  • bash
    mount /dev/vda1 /mnt
    chroot /mnt
    passwd root
    exit
    umount /mnt

  • Disable rescue mode and reboot.
  • See Server Not Booting — Rescue Mode Guide for detailed rescue mode instructions.

    Resetting a Non-Root User Password

    If you know the root password but need to reset another user's password:

    bash
    # As root
    sudo passwd username

    If the user needs to change their own password on next login:

    bash
    sudo passwd --expire username

    Security After a Password Reset

    After resetting any password:

  • Use a strong, unique password — Never reuse passwords.
  • Update saved passwords — Update your password manager.
  • Review account activity — Check the activity log for any unauthorized actions.
  • Enable 2FA if not already enabled. See Enable 2FA.
  • Consider SSH key authentication — Keys are more secure than passwords. See Managing SSH Keys.
  • What to Do Next

    • Enable 2FA — Protect Your Account — Add extra security.
    • Managing SSH Keys — Set up key-based authentication.
    • Locked Out of 2FA — Recovery Steps — If you also lost your 2FA device.
    • All Ways to Contact Support — Get help if you are stuck.

    Was this article helpful?

    ← Back to TroubleshootingBrowse all categories →

    Still have questions?

    Contact Support →Submit a Ticket