Simple script to recursively count the number of files on a Linux server. ls -laR | wc -l How this works: ls (lists folder contents), […]
Continue readingTag: Linux
Simple MySQL Database Backup
Another simple backup script. This script builds on the rsync file backup to allow daily, monthly, and yearly incremental MySQL database backups. The backup will […]
Continue readingSetup SSH Keys Between Two Linux Servers
SSH Keys will allow data to move between two Linux servers without first prompting for a login. This is useful if you want to automate […]
Continue readingHow to Repair a MySQL Database
If a server is shutdown unexpectedly (power outage or hardware failure), one or more MySQL tables can be locked open and may need to be […]
Continue reading