CloudLinux Limits & LVE Manager โ
RemarkableCloud cPanel servers run CloudLinux, which uses LVE (Lightweight Virtual Environment) to isolate each hosting account in its own resource container. This prevents one account from slowing down or crashing others โ a common problem on traditional shared hosting.
What LVE controls โ
| Resource | What it limits |
|---|---|
| CPU | Percentage of one CPU core the account can use |
| PMEM | Physical RAM the account can consume |
| VMEM | Virtual memory limit (usually set to unlimited) |
| EP | Entry Processes โ simultaneous incoming connections |
| NPROC | Number of processes the account can run simultaneously |
| IO | Disk read/write speed in KB/s |
| IOPS | Disk I/O operations per second |
Accessing LVE Manager โ
Log into WHM โ search LVE Manager โ CloudLinux โ LVE Manager.
The dashboard shows all accounts with their current limits and whether they've hit any limits recently (shown in red).
Default limits โ
RemarkableCloud sets these defaults on all servers. Adjust for your workload:
| Resource | Default | Recommended for WooCommerce |
|---|---|---|
| CPU | 100% | 200โ400% |
| PMEM | 512 MB | 1024โ2048 MB |
| EP | 20 | 40โ60 |
| NPROC | 100 | 150 |
| IO | 1024 KB/s | 2048โ4096 KB/s |
Adjusting limits for a specific account โ
- In LVE Manager, click the Users tab.
- Find the account you want to adjust โ use the search box.
- Click the Edit icon (pencil) next to the account.
- Uncheck Use Default for the resources you want to customize.
- Enter the new values.
- Click Save.
Setting server-wide defaults โ
To change the default limits applied to all accounts:
- Go to LVE Manager โ Options
- Modify the default values
- Click Save
Accounts with custom limits keep their custom values. Only accounts using defaults are affected.
Diagnosing limit hits โ
If a site is slow or returning 503 errors, check if it's hitting LVE limits:
- Go to LVE Manager โ Statistics
- Set the time range to the period when slowness was reported
- Look for accounts with high faults โ these are limit hits
A high EP fault count means too many simultaneous connections. A high CPU fault count means the site needs more processing power.
You can also check from SSH:
# Current LVE usage for all accounts
lveps --cpu --mem --io
# Historical faults for a specific user
lveinfo --user=username --period=1dCommon limit issues and fixes โ
Site returns 503 errors under traffic Usually an EP (Entry Process) limit hit. Increase EP from 20 to 40โ60 for the affected account.
WordPress admin is slow but frontend is fine Usually a CPU limit. Admin requests are heavier (more PHP, more DB queries). Increase CPU to 200% for the account.
File uploads fail or time out Can be an IO limit. Increase IO from 1024 to 2048 KB/s.
Database queries are slow Often PMEM โ insufficient RAM forces MySQL to use swap. Increase PMEM and consider upgrading the Cloud Cube plan if the issue persists across multiple accounts.

