Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Database \ MySQL database under Linux to achieve automatic backup scheduled backup day     - How to determine whether the Linux server was hacked (Linux)

- MongoDB replication instance (Database)

- Samba public folder permissions (Server)

- The YUM package management under Linux (Linux)

- Linux Defensive / mitigate DDOS attacks (Linux)

- MySQL DATE_FORMAT () function (Database)

- Install Krita 2.8 on Ubuntu 13.10 / 12.04 / 12.10 (Linux)

- Create, modify, delete users, user groups under linux (Linux)

- Android use canvas board painting (Programming)

- C ++ containers (Programming)

- MySQL Installation Troubleshooting (Database)

- Linux folder and extract the differential file comparison techniques -rsync Magical (Linux)

- Configuring a Linux operating system against syn attack (Linux)

- Adjustment expand VMDK format VirtualBox disk space (Linux)

- To install Docker under Ubuntu 15.04 (Linux)

- CentOS 6.5_x64 install Oracle 11g R2 (Database)

- Deployment Kubernetes manage Docker example cluster on Ubuntu (Server)

- Install Linux Mint 17: 20 things to do (Linux)

- Linux System Getting Started Learning: From VirtualBox from the client host access NAT (Linux)

- Cool Android realization SVG animation (Programming)

 
         
  MySQL database under Linux to achieve automatic backup scheduled backup day
     
  Add Date : 2018-11-21      
         
         
         
  Outline
Backup is the basis for disaster recovery, it refers to operational errors or system failures occur in order to prevent loss of data systems, and all or part of the data set is copied from the application host's hard disk or other storage arrays to process media. For some sites, systems, databases is everything, so make a backup of the database is essential!

What backup?
Why backup
Disaster recovery program construction

Storage media
CD
Magnetic tape
Hard disk
Disk Array
DAS: Direct Attached Storage
NAS: Network-attached storage
SAN: Storage Area Network
Cloud Storage

Here mainly to local disk as a storage medium to use to talk about to add scheduled tasks, basic backup script, and other storage media access method is the media may not be the same.

1. Check disk space:
Since it is a regular backup, we must choose a space sufficient disk space to avoid backup failure due to lack of space, the consequences of data loss!
Stored to the current disk This is the simplest, but most are not recommended; how the server hard drive, it is best to store the backup to another hard disk; conditional on the choice of better and safer storage medium;

# Df -h
Filesystem Size Used Avail Use% Mounted on
/ Dev / mapper / VolGroup-lv_root 50G 46G 1.6G 97% /
tmpfs 1.9G 92K 1.9G 1% / dev / shm
/ Dev / sda1 485M 39M 421M 9% / boot
/ Dev / mapper / VolGroup-lv_home 534G 3.6G 503G 1% / home

2. Create a backup directory:
Above we see that using the command / home under more adequate space, so you can consider the / home save the backup file;

cd / home
mkdir backup
cd backup

3, create a backup Shell script:
Note that the following command in the DatabaseName replaced by the actual name of the database;
Of course, you can also use the fact of naming!

vi bkDatabaseName.sh

Input / paste the following:

#! / Bin / bash
mysqldump -uusername -ppassword DatabaseName> / home / backup / DatabaseName _ $ (date +% Y% m% d_% H% M% S) .sql

Compression of backups:

#! / Bin / bash
mysqldump -uusername -ppassword DatabaseName | gzip> / home / backup / DatabaseName _ $ (date +% Y% m% d_% H% M% S) .sql.gz

Note:
Replace username with the actual user name;
The password with the actual password;
The DatabaseName replaced by the actual name of the database;

4, add executable permissions:
chmod u + x bkDatabaseName.sh
After you add executable permissions to perform to see if there was anything wrong script can not work properly;

./bkDatabaseName.sh

5. Add Scheduled Task
Detect or install crontab
Confirm crontab is installed:
Execute crontab command if the message command not found, it indicates not installed

# Crontab
-bash: crontab: command not found1
As there is no installation crontab, you need to install it, please refer to the specific steps:
Under CentOS using yum command to install the Task Scheduler crontab
Use the rpm command crontab from CentOS system disk to install the Task Scheduler

Add Scheduled Task
Excuting an order:

crontab -e

Then just use the vi editor, you can edit the planned tasks.
Enter the following and save:

* / 1 * * * * /home/backup/bkDatabaseName.sh

What exactly does it mean?
Meaning that every minute execute a shell script "/home/backup/bkDatabaseName.sh".

6, whether to perform the test task
Quite simply, we executed several "ls" command to see one minute after the file has not been created on it!

If the task fails, you can view the task log with the following command:

# Tail -f / var / log / cron

Output similar to the following:

Sep 30 14:01:01 bogon run-parts (/etc/cron.hourly) [2503]: starting 0anacron
Sep 30 14:01:01 bogon run-parts (/etc/cron.hourly) [2512]: finished 0anacron
Sep 30 15:01:01 bogon CROND [3092]: (root) CMD (run-parts /etc/cron.hourly)
Sep 30 15:01:01 bogon run-parts (/etc/cron.hourly) [3092]: starting 0anacron
Sep 30 15:01:02 bogon run-parts (/etc/cron.hourly) [3101]: finished 0anacron
Sep 30 15:50:44 bogon crontab [3598]: (root) BEGIN EDIT (root)
Sep 30 16:01:01 bogon CROND [3705]: (root) CMD (run-parts /etc/cron.hourly)
Sep 30 16:01:01 bogon run-parts (/etc/cron.hourly) [3705]: starting 0anacron
Sep 30 16:01:01 bogon run-parts (/etc/cron.hourly) [3714]: finished 0anacron
Sep 30 16:15:29 bogon crontab [3598]: (root) END EDIT (root)
     
         
         
         
  More:      
 
- Wireless LAN security solutions (Linux)
- DataGuard add temporary data files bug (Database)
- Upgrade Goldengate 11.1.1.1.2 to 11.2.1.0.1 (Database)
- Linux systems use IP masquerading anti-hacker (Linux)
- Ruby and Python simple comparison (Programming)
- Spring AOP for logging (Programming)
- Modify grub solve computer startup error: ERROR 17 (Linux)
- How do you temporarily emptied Bash environment variable before running the command on Linux (Linux)
- Installation and deployment of Hadoop 2.7.1 on Ubuntu 14.04 LTS (Server)
- grep search from files and display the file name (Linux)
- Regular expressions in Perl (Programming)
- Linux system boot process detail (Linux)
- Upgrading from Fedora 20 to 21 (Linux)
- CentOS / RHEL 6 was repeated prohibited under the SNMP connection log (Server)
- Linux 10 useful examples of command-line completion (Linux)
- Keepalived + HAProxy high availability load balancing (Server)
- CentOS 6.6 install JDK7 (Linux)
- Use mysqldump MySQL database backup - Linux Shell Scripting (Database)
- Variables Python variables (Programming)
- Reason C ++ program running under Linux a segmentation fault core dumped in (Programming)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.