Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Mysql automatic backup script handout

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

The following content mainly brings you mysql automatic backup script handouts, the knowledge here is slightly different from books, are summed up by professional and technical personnel in the process of contact with users, have a certain experience sharing value, hope to bring help to the majority of readers.

#! / bin/bash

Bak_dir=/tmp/ `date +% Y% m% d`

Mysqldb=test

Mysqlusr=root

Mysqlpw=123456

Mysqlcmd=/usr/bin/mysqldump

If [$UID-ne 0]; then

Echo "you must be use root"

Exit

Fi

If [!-d $bak_dir]; then

Mkdir-p $bak_dir

Echo "$bak_dir is create ok"

Else

Echo "this $bak_dir is already exists"

Fi

$mysqlcmd-u$mysqlusr-p$mysqlpw $mysqldb > $bak_dir/$mysqldb.sql

If [$?-eq 0]; then

Echo "the database $mysqldb is backup ok"

Else

Echo "the database $mysqldb is backup error"

Fi

Automatic backup

Crontab e

01 00 * / bin/bash / tmp/mysql_back.sh

For the above handouts on mysql automatic backup scripts, if you need to know more, you can continue to follow our industry promotion. If you need professional answers, you can contact the pre-sale and after-sale ones on the official website. I hope this article can bring you some knowledge updates.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report