Managing Your VPS from cloud.momo.tz: Console, Reboots, Snapshots & Monitoring
Your Momo Cloud VPS control panel at cloud.momo.tz gives you full control over your server from any web browser — no SSH client or technical setup required. This guide walks you through every major feature so you can keep your server running smoothly and recover quickly when something goes wrong.
Logging In and Getting Oriented
Open your browser and go to cloud.momo.tz. Sign in with your Momo Cloud account email and password. Once logged in, click on your VPS from the server list to open its management dashboard.
From this dashboard you can:
- View your server's IP address, hostname, and login credentials
- Start, stop, or reboot your server
- Open a live in-browser console (VNC) to access the server directly
- Reinstall or rebuild the operating system
- Take and restore snapshots and backups
- Monitor real-time and historical resource usage graphs (CPU, RAM, disk, bandwidth)
- Reset your root password
Power Controls: Start, Stop, and Reboot
The power controls let you manage your server's running state without needing to SSH in. You will find Start, Stop, and Reboot buttons prominently on the server dashboard.
Start and Stop
Use Start to power on a server that is currently off. Use Stop to shut it down. There are two types of stop/reboot actions:
| Action | What it does | When to use it |
|---|---|---|
| Soft Stop / Graceful Shutdown | Sends a shutdown signal to the OS, allowing it to close processes and write data safely | Routine maintenance, planned downtime — always prefer this |
| Hard Stop / Force Off | Cuts power immediately, like pulling the plug | Only when the server is completely frozen and a soft stop has no effect |
| Soft Reboot | Gracefully restarts the OS | After software updates, config changes, or minor issues |
| Hard Reboot | Forces an immediate restart without a clean shutdown | Only when the server is unresponsive and a soft reboot is not possible |
Warning: Using Hard Stop or Hard Reboot can interrupt disk writes mid-operation, which may corrupt open files or databases. Always try the soft/graceful option first and only use the hard option as a last resort.
Using the Web Console (VNC)
The in-browser console gives you direct keyboard access to your server's terminal, exactly as if you were sitting in front of it. This is invaluable when SSH is not available — for example, after accidentally blocking port 22 in your firewall, changing your network settings, or forgetting your SSH key.
- Log in to
cloud.momo.tzand open your VPS dashboard. - Click the Console button (sometimes labelled VNC or Launch Console). A new browser window or panel will open showing your server's terminal.
- Wait a moment for the connection to establish. You will see the server's login prompt or the current terminal session.
- Click inside the console window to give it keyboard focus, then type your username (usually
root) and press Enter. - Enter your root password when prompted. You can find or reset this password from the control panel (see the section below on resetting your root password).
- You now have full terminal access. Fix your firewall rules, update your SSH configuration, or diagnose issues as needed.
- When finished, you can close the console window. Your server continues running normally.
Tip: The VNC console works even if your server has no network connectivity, as long as the server itself is powered on. It is your recovery lifeline — bookmark the control panel URL so you always have access.
Snapshots and Backups
A snapshot captures the exact state of your server's disk at a point in time. Taking a snapshot before making risky changes — such as upgrading your OS, installing major software, or editing critical configuration files — gives you a reliable restore point if something goes wrong.
Taking a Snapshot
- From your VPS dashboard, click Snapshots or Backups in the side menu.
- Click Take Snapshot (or Create Snapshot).
- Give the snapshot a descriptive name, such as
before-nginx-upgrade-2026-06-02, so you can identify it later. - Click Confirm. The snapshot process will begin. This may take a few minutes depending on your disk size. Your server remains running during this time.
- Once complete, the snapshot appears in your list with a timestamp.
Restoring from a Snapshot
- Go to the Snapshots section of your VPS dashboard.
- Find the snapshot you want to restore and click Restore.
- Read the confirmation prompt carefully, then click Confirm Restore.
- The restore process will run. Your server will reboot into the restored state when it completes.
Warning: Restoring a snapshot completely overwrites your current server disk. Any files, databases, or changes made after the snapshot was taken will be permanently lost. If you are unsure, take a fresh snapshot of the current state before restoring an older one.
Reinstalling / Rebuilding the OS
If your server is in an unrecoverable state, or you simply want to start fresh with a clean operating system, you can reinstall (rebuild) the OS from the control panel.
- From your VPS dashboard, click Reinstall OS or Rebuild.
- Select the operating system and version you want to install from the available list.
- Click Confirm Reinstall.
- Wait for the process to complete. Once done, a fresh OS will be installed and new root credentials will be displayed in your dashboard.
Warning: Reinstalling the OS erases all data on the server's primary disk. Back up any files, databases, or configurations you want to keep before proceeding. Take a snapshot first if you are unsure.
Resetting Your Root Password
If you have lost or forgotten your root password and cannot access the server via SSH, you can reset it directly from the control panel without needing console access.
- Open your VPS dashboard at
cloud.momo.tz. - Look for the Reset Password option (sometimes under a settings or credentials section).
- Click it and confirm. A new root password will be generated and displayed on screen.
- Copy the new password immediately and store it securely. You can then use it to log in via SSH or the VNC console.
Tip: After resetting your password, it is good practice to change it again to something memorable once you are logged in, using the passwd command in the terminal.
Monitoring Resource Usage
The Monitoring or Graphs section of your VPS dashboard shows real-time and historical charts for CPU usage, RAM usage, disk I/O, and bandwidth (network in/out). Checking these regularly helps you catch problems before they cause downtime.
| Metric | What high usage usually means |
|---|---|
| CPU | A runaway process, heavy web traffic, a background job (cron/backup), or a crypto-mining attack |
| RAM | Memory leak in an application, too many concurrent processes, or insufficient RAM for your workload |
| Disk | Log files filling up, large uploads/downloads, database growth, or a backup running |
| Bandwidth | High legitimate traffic, a DDoS attack, or a misconfigured application sending large amounts of data |
When you notice a spike, SSH into your server (or use the VNC console) and run top or htop to identify which process is consuming resources. For disk usage, the command df -h shows free space per partition, and du -sh /var/log/* helps find large log files.
Troubleshooting Common Issues
Server is Unresponsive
- Open the Console (VNC) from the control panel to check if the server is responsive at the terminal level.
- If the console shows activity or a login prompt, investigate from there (check logs with
journalctl -xeordmesg). - If the console is also frozen, try a Soft Reboot first.
- If the soft reboot has no effect after a couple of minutes, use Hard Reboot as a last resort.
Locked Out of SSH
- Open the VNC Console from
cloud.momo.tz— this bypasses SSH entirely. - Log in as root and check your firewall rules:
ufw statusoriptables -L. - Re-open port 22 if it is blocked, or update your SSH configuration as needed.
High Resource Usage
- Check the monitoring graphs to identify which resource is spiking and when it started.
- SSH in (or use the console) and run
topto find the offending process. - Investigate whether the process is legitimate (a backup job, traffic spike) or unexpected (malware, runaway script).
- Restart or kill the offending process as appropriate, and consider upgrading your plan if legitimate usage has outgrown your current resources.
Quick Reference: Control Panel Actions
| Action | When to use it |
|---|---|
| Soft Reboot | After updates or config changes; routine restart |
| Hard Reboot | Server frozen and soft reboot is not responding |
| VNC Console | SSH unavailable; firewall locked you out; network misconfiguration |
| Take Snapshot | Before any risky change: upgrades, new software, config edits |
| Restore Snapshot | Roll back after a failed change (overwrites current data) |
| Reinstall OS | Start completely fresh; unrecoverable system (erases all data) |
| Reset Password | Lost root password; locked out of both SSH and console |
| Monitoring Graphs | Diagnose slowness, spikes, or unexpected traffic |
With the Momo Cloud control panel at cloud.momo.tz, you have everything you need to manage, recover, and monitor your VPS without ever needing specialised software. Bookmark the panel URL, take snapshots before major changes, and use the VNC console as your first step whenever SSH is unavailable — these three habits will save you significant time and frustration as your server grows.
Was this article helpful?