🎉 Use code ORDER25K to get 25% OFF all orders! 🎉

Useful Sonic Panel Commands Print

  • Sonic Panel Commands, Linux Commands, Server Administration, Service Control, Service Monitoring, System Logs, Hosting Control Panel, Logging, Hosting Management, Sonic Panel Management, Sonic Panel Tips, Server Maintenance, Control Panel, Server Updates
  • 0

Sonic Panel Usful commands:

Must be logged in as root to SSH:

  1. Starting Sonic Panel Service:

    bashCopy code
    systemctl start sonic
  2. Stopping Sonic Panel Service:

    bashCopy code
    systemctl stop sonic
  3. Restarting Sonic Panel Service:

    bashCopy code
    systemctl restart sonic
  4. Checking Sonic Panel Service Status:

    bashCopy code
    systemctl status sonic
  5. Viewing Sonic Panel Logs:

    • Main log:
      bashCopy code
      tail -f /var/log/sonic.log
    • Web log:
      bashCopy code
      tail -f /var/log/sonic/sonic-web.log
  6. Updating Sonic Panel (example):

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

    • List all services managed by Sonic Panel:
      bashCopy code
      sonic services
    • Start, stop, or restart specific service (replace service-name with actual service name):
      bashCopy code
      sonic service start service-name
  8. Checking Sonic Panel Version:

    bashCopy code
    sonic version

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


Was this answer helpful?
« Back