2023 03 27 09 50 1 540x304 - Moving Jetbackup's jetindexd directory

Moving Jetbackup’s jetindexd directory

On Jetbackup < v5.3.0  there is a known bug with WiredTiger that jetindex is based upon, causing the jetindexd directory to grow in size when using S3 storage. If you are running out of space on the /usr partition, temporary workaround for...

chrome 7spm80ytMF 540x304 - Find all WordPress installations  and export their databases

Find all WordPress installations and export their databases

This simple script will search for all wp-config.php files in a directory, pull the database name and create a backup of it. for wpinstall in $(find "$(pwd)"/ -type f -name wp-config.php | sed 's/wp-config.php//g') do echo "$wpinstall" dbname=$(grep...

chrome h3nDAdjxo1 540x304 - Add custom Apache rules in cPanel

Add custom Apache rules in cPanel

You can customize Apache (2.4) virtual hosts with Include Files, by creating new include.conf file for that user or for all vhosts on your server. 💡 In the following code snippets make sure to replace: <user> with the cpanel...

modem unlocker huawei 478x304 - Setting up an SMS server on Ubuntu 21.04 using Minicom

Setting up an SMS server on Ubuntu 21.04 using Minicom

I have an SMS booking app running on Ubuntu and will be setting up SMS autoresponder using a HUAWEI Mobile Modem E1550. Remove PIN from the SIM card SIM card has to be without a PIN so if you have purchased a prepaid SIM card that has PIN enabled...

chrome fv2MgTNCAE 540x225 - Backup WordPress files and database via SSH

Backup WordPress files and database via SSH

This one-liner will backup your WordPress files and database into a directory name with today’s date. mkdir -p ../backup/$(date +%Y-%m-%d) ; mysqldump $(grep DB_NAME wp-config.php | grep -v WP_CACHE_KEY_SALT | cut -d \' -f 4) | gzip > ...