当前位置:网站首页>Linux regularly backs up MySQL database
Linux regularly backs up MySQL database
2022-07-06 06:00:00 【amu】
For data security , It is necessary to back up your database regularly , Of course , You can't back up manually every time , It's not just trouble , and , In case you forget to back up , If something goes wrong, it's over . So I use a timer cron The task comes from the process of Automation .
Create script file backupdb.sh
The following script db_user
db_passwd
db_name
backup_name
Replace with your own information .
#!/bin/bash
db_user="username"
db_passwd="pwd"
db_name="dbname"
backup_name="$(date +"%Y%m%d%H%M%S")"
/usr/bin/mysqldump -u$db_user -p$db_passwd $db_name >> /path/to/$backup_name.sql
Add execute permission
chmod +x backupdb.sh
establish cron Timing task
perform crontab -e, Prompt you to choose editor , You can choose according to your personal preference ( I chose vim
no crontab for admin - using an empty one
Select an editor. To change later, run 'select-editor'.
1. /bin/nano <---- easiest
2. /usr/bin/vim.basic
3. /usr/bin/vim.tiny
4. /bin/ed
Choose 1-4 [1]: 2Then input the following content on the pop-up edit page :
0 1 * * * /home/admin/backupdb.sh
The above line means , Every morning 1 Point to perform
/home/admin/backupdb.sh
. Of course, you can choose the backup frequency according to your own situation , About cron Use , You can refer to what I wrote before This article .
p.s. The following may be prompted , But it does not affect the backup :
mysqldump: [Warning] Using a password on the command line interface can be insecure.
Tips mysqldump Process permission error
Here's a hint :
mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
Description of the user No permission for this database , The solution is 2 individual .
Update the permissions of database users . Use mysqldump The --no-tablespaces Options run .
Method 1: Update user rights
Grant to users PROCESS Permissions may be fixed mysqldump The simplest option of process permission error . But it will bring safety problem .
Log in to the database as an administrator user , Grant users you need to use PROCESS jurisdiction :
GRANT PROCESS ON *.* TO [email protected];
p.s. PROCESS It is a global level permission . It cannot be applied to a single database . Global permissions are either administrative permissions , Or apply to MySQL All databases on the server . Trying to grant them on a single database displays the following error :
ERROR 1221 (HY000): Incorrect usage of DB GRANT and GLOBAL PRIVILEGES
To grant permissions to all databases , You must use ON *.* ...
grammar .
Method 2: Use --no-tablespaces
Options If you don't want to assign global level permissions to the users you use , Must be specified when dumping the database --no-tablespaces
Options .
mysqldump --no-tablespaces -u user -ppass dbname >> backupfile.sql
give PROCESS The security of permissions
according to MySQL file ,[PROCESS jurisdiction ] It controls the access to information of the statement being executed in the session . This is a kind of server management permission , So it's best to grant it to all users . This is because it may display the text in the currently executing query . therefore , Any having PROCESS Users with permissions can see the queries sent by others . For example, similar UPDATE user SET password=PASSWORD
Query for , Private content may be displayed .
边栏推荐
- Configuring OSPF GR features for Huawei devices
- Station B, Mr. Liu Er - multiple logistic regression, structure 7
- High quality coding tool clion
- [Jiudu OJ 07] folding basket
- [SQL Server Express Way] - authentification et création et gestion de comptes utilisateurs
- 假设检验学习笔记
- Sqlmap tutorial (III) practical skills II
- 如何在业务代码中使用 ThinkPHP5.1 封装的容器内反射方法
- J'ai un chaton.
- ArcGIS application foundation 4 thematic map making
猜你喜欢
Clock in during winter vacation
Function of contenttype
[SQL Server fast track] - authentication and establishment and management of user accounts
Mysql database master-slave cluster construction
网络协议模型
嵌入式面试题(四、常见算法)
H3C V7 switch configuration IRF
华为BFD的配置规范
B站刘二大人-线性回归及梯度下降
Cannot build artifact 'test Web: War expanded' because it is included into a circular depend solution
随机推荐
MPLS test report
wib3.0 跨越,在跨越(ง •̀_•́)ง
Yygh-11-timing statistics
通讯录管理系统链表实现
Summary of data sets in intrusion detection field
A master in the field of software architecture -- Reading Notes of the beauty of Architecture
Processes and threads
[experience] install Visio on win11
实践分享:如何安全快速地从 Centos迁移到openEuler
Yunxiaoduo software internal test distribution test platform description document
Web service connector: Servlet
[C language syntax] the difference between typedef struct and struct
[experience] when ultralso makes a startup disk, there is an error: the disk / image capacity is too small
Query the standard text code corresponding to a work center (s) in the production order
Classes and objects (I) detailed explanation of this pointer
Company video accelerated playback
[Thesis code] SML part code reading
First knowledge database
【SQL server速成之路】——身份驗證及建立和管理用戶賬戶
Huawei BFD configuration specification