Your First Conversation
Once your server is connected, open a conversation from the server detail page. Type what you need — just like you'd explain it to a senior engineer — and RasnuCloud takes care of the rest.
This is where the product's power becomes immediately clear.
A Real Example: Disk Space
Your server is running low on disk. Normally, you'd SSH in, run a handful of commands, interpret the output, decide what's safe to delete, and run more commands. With RasnuCloud, you just describe the problem:
You type:
Check how much disk space is being used and clean up anything that's safe to remove
What happens:
RasnuCloud scans disk usage across every partition, identifies the largest consumers, and makes a plan. It won't just tell you what to do — it tells you what it's about to do, why it's safe, and asks for confirmation before touching anything significant:
Here's what I found:
Your root partition is at 89% capacity (44 GB / 50 GB).
The biggest culprits:
→ 4.2 GB — Nginx access logs (older than 7 days)
→ 1.8 GB — MySQL slow query log
→ 800 MB — System journal (older than 7 days)
I'll compress the old Nginx logs, archive and truncate the MySQL slow query log,
and trim the system journal to the last 7 days. These are all safe operations
with no impact on your running services.
Proceed?You confirm. RasnuCloud executes — streaming each step live to your screen:
✓ Compressing Nginx access logs older than 7 days — freed 3.1 GB
✓ Archiving and truncating MySQL slow query log — freed 1.5 GB
✓ Trimming system journal to 7-day retention — freed 650 MB
Done. Disk is now at 57% (28 GB / 50 GB). You've recovered 5.25 GB.What Makes This Different
This isn't a chatbot that pastes commands for you to copy-paste. RasnuCloud actually executes the work — safely, with rollback if anything goes wrong.
Before anything runs, RasnuCloud knows your server intimately: what OS you're running, what packages are installed, what services are active, how your filesystem is laid out. This is why RasnuCloud never gives you a generic answer — every action is tailored to your specific infrastructure.
More Things You Can Do Right Now
These are real examples you can try with any connected server:
Is my server up to date? Are there any security patches I should apply?Set up a firewall — allow SSH, HTTP, and HTTPS. Block everything else.Check if MySQL is running and show me the top 5 slowest queries from the last hour.Create a cron job that clears /tmp every night at 3am.Something is causing high CPU. Figure out what it is.My Nginx is returning 502 errors. Diagnose the problem and fix it.Show me all services that are failing or in a degraded state.RasnuCloud Never Acts Blindly
Every AI-generated action goes through a safety review before it runs. RasnuCloud is designed to be permanently cautious:
| Type of Action | What Happens |
|---|---|
| Read-only (checking, viewing, monitoring) | Executes immediately |
| Reversible (installing, configuring, restarting) | Executes with a generated rollback plan |
| Destructive (deleting data, dropping databases, wiping disks) | Blocked. Requires your explicit manual approval. |
You can always ask RasnuCloud to explain exactly what it's planning before it does anything:
Before you run anything, show me the exact steps you're going to take