Useful MediaCP Commands

Useful commands for managing MediaCP:

MUST CONNECT TO SSH USING ROOT

  1. Starting MediaCP Service:

    bash
    systemctl start mediacp
  2. Stopping MediaCP Service:

    bash
    systemctl stop mediacp
  3. Restarting MediaCP Service:

    bash
    systemctl restart mediacp
  4. Checking MediaCP Service Status:

    bash
    systemctl status mediacp
  5. Viewing MediaCP Logs:

    • Main log:
      bash
      tail -f /var/log/mediacp.log
    • Web log:
      bash
      tail -f /var/log/mediacp/mediacp-web.log
  6. Updating MediaCP (example):

    • Download new version (replace URL with actual URL):
      bash
      wget https://example.com/mediacp-latest.tar.gz
    • Extract the archive:
      bash
      tar -xzvf mediacp-latest.tar.gz
    • Stop current MediaCP:
      bash
      systemctl stop mediacp
    • Replace old files with new files and update configurations.
    • Start updated MediaCP:
      bash
      systemctl start mediacp
  7. Managing MediaCP Services:

    • List all services managed by MediaCP:
      bash
      mediacp services
    • Start, stop, or restart specific service (replace service-name with actual service name):
      bash
      mediacp service start service-name
  8. Checking MediaCP Version:

    bash
    mediacp version

These commands should help you manage various aspects of your MediaCP installation. Always consult official documentation and resources for the most accurate and up-to-date information regarding MediaCP commands and usage.

 
 
 
R
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Upgrading Media CP

Update Media Control Panel Login to your SSH server as root and run the following command:...

Useful MediaCP Commands

Useful Commands for managing MediaCP Must be Logged in SSH as root to Use Commands, Starting...

Useful Sonic Panel Commands

Sonic Panel Usful commands:Must be logged in as root to SSH: Starting...

Getting Started with Sonic Panel

Getting Started with Sonic Panel: A Comprehensive Guide Sonic Panel offers a...

Useful Everest Panel Command

Viewing EverestPanel Logs: Main log: bashCopy code tail -f /var/log/everestpanel.log...