Restore Multiple cPanel Backups From SSH
From Terminal in cPanel or from an SSH session as root (or an account with backup restoring privileges), navigate to the folder the cPanel backup files are stored. From that …
cPanel Administration Tips & Tricks
From Terminal in cPanel or from an SSH session as root (or an account with backup restoring privileges), navigate to the folder the cPanel backup files are stored. From that …
Is your cPanel server running out of space? Need to find out where the usage is coming from? Finding the largest folder is as easy as running the following simply …
Has your CloudLinux expired and you have renewed it, but LVE Manager still sees the old license? Have you changed the license and it is not seeing the new license? …
So you recently updated and you rebooted and now your cPanel server is not booting and instead booting to a Grub prompt?: grub> This is typically due to …
Need to find out how many inodes each user is using on your cPanel server? Simply run the following command from SSH: cd /home echo "Inode usage for: $(pwd)" ; …
If you find you have a lot of users with large amounts of files in their Trash in cPanel, you can run the following command from SSH to delete them …
Need to find and remove a particular file and/or folder and know the name, but not the location? Use the following command to find and remove it!: find . -name …
When in List Accounts in cPanel's WHM, you find an account with the IP address set as "MISSING", try the running the following command from SSH: /scripts/rebuildhttpdconf After running …
cPanel All cPanel logs are located in the folder: /usr/local/cpanel/logs The access_log contains all traffic to WHM, cPanel, and Webmail: /usr/local/cpanel/logs/access_log The error_log contains all errors when accessing a cPanel related …
How do I see which modules are currently enabled/installed for Apache? You can simply enter the following command from an SSH session to give a list of currently active Apache …
How do I manually export or "dump" a MySQL database from command line or SSH? You can dump a MySQL database to the current folder from an SSH session using …
How can I find a specific text string in a file or multiple files from an SSH session? You can use the grep command to easily find text within files. …
How do I bulk edit a DNS zone on cPanel? Changed nameserver name and need to update all the DNS zones on your cPanel server? Using the replace command from …
New to setting up cron jobs and need to know what each digit means? The following is an example of each digit and its function: * * * * …
How do I find and remove old cPanel backups? Use the following command from an SSH session to find all backups that are older than 60 days and delete them: …