https://github.com/deepurai/cronjob_shellscripting
Taking backup of Application Folder/Mysql DB/Postgresql DB backup using cronjob/shell-script
https://github.com/deepurai/cronjob_shellscripting
applicaton-folder-backup cronjob mysql-database-backup postgresql-database-backup shell-script
Last synced: 2 months ago
JSON representation
Taking backup of Application Folder/Mysql DB/Postgresql DB backup using cronjob/shell-script
- Host: GitHub
- URL: https://github.com/deepurai/cronjob_shellscripting
- Owner: deepuRai
- Created: 2019-05-23T05:58:55.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-23T06:06:11.000Z (almost 6 years ago)
- Last Synced: 2025-01-25T07:41:43.407Z (4 months ago)
- Topics: applicaton-folder-backup, cronjob, mysql-database-backup, postgresql-database-backup, shell-script
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CronJob_ShellScripting
#Application Folder Backup
For taking Application folder backup in linux please refer application_folder_backup.sh. Once you create this file in your linux environment please set cron job for the same using below sample command10 00 * * * /bin/bash /var/application_folder_backup.sh
#Mysql Database Backup
For taking mysql database backup please refer mysql_db_backup.sh.Once you create this file in your linux environment please set cron job for the same using below sample command
10 00 * * * /bin/bash /var/mysql_db_backup.sh
#Postgresql Database Backup
For taking postgresql database backup please refer postgresql_DB_backup_script.sh.Once you create this file in your linux environment please set cron job for the same using below sample command
10 00 * * * /bin/bash /var/postgresql_DB_backup_script.sh