Skip to main content

Power Management

You can manage your server's power state through the control panel.

Available Actions

ActionDescription
BootStart a stopped server
RestartGracefully restart (sends shutdown signal, then starts)
ShutdownGraceful shutdown (sends shutdown signal to OS)
Power OffForce power off (equivalent to pulling the plug, may cause data loss)

Steps

  1. Log in to GoMami, go to Services > My Services
  2. Click the target server
  3. Power action buttons are visible at the top of the control panel (Boot / Shutdown / Restart / Power Off)
  4. Click the desired action button and confirm in the dialog

Power Management

caution

Power Off (force shutdown) immediately cuts power and may corrupt data being written. Use Shutdown (graceful) whenever possible.

Via API

You can also perform power actions via API:

# Restart server
curl -X POST https://cp.gomami.io/api/server/{id}/restart \
-H "Authorization: Bearer <your_api_token>"

# Boot server
curl -X POST https://cp.gomami.io/api/server/{id}/boot \
-H "Authorization: Bearer <your_api_token>"

# Graceful shutdown
curl -X POST https://cp.gomami.io/api/server/{id}/shutdown \
-H "Authorization: Bearer <your_api_token>"