MySQL Download URL
https://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.56-linux-glibc2.5-x86_64.tar.gz
- Uninstall any existing version of MySQL
sudo rm /var/lib/mysql/ -R
| #!/bin/bash | |
| # | |
| # Backup a Postgresql database into a daily file. | |
| # | |
| BACKUP_DIR=/pg_backup | |
| DAYS_TO_KEEP=14 | |
| FILE_SUFFIX=_pg_backup.sql | |
| DATABASE= | |
| USER=postgres |
Follow This part of the Android Guides Tutorial.
| #!/bin/bash | |
| echo "starting check sidekiq" | |
| process=`cat /path-to/sidekiq.pid` | |
| processConfirmation=`ps aux | awk '{print $2 }' | grep $process` | |
| if [ -z $processConfirmation ] | |
| then | |
| echo "oops! not running... restarting sidekiq" |