CentOS+shell脚本

5.Mariadb Backup Script

 脚本文件:/shells/mysqlbk.sh;

 备份数据到/root/mysqlbackup 目录;

 备份脚本每隔 30 分钟实现自动备份;

 导出的文件名为 all-databases-20210213102333,其中

20210213102333 为运行备份脚本的当前时间,精确到秒。

vim /shells/mysqlbk.sh
mysqldump --all-databases -uroot -pchinaskills -h 192.168.100.200> /root/mysqlbackup/all
databases-"`date +%Y%m%d%H%M%S`"
vim /etc/crontab
*/30 * * * * root bash /shells/mysqlbk.sh

web proxy脚本:

CentOS+shell脚本_第1张图片

#!/bin/bash
url=https://www.chinaskills.cn
while [ ture ]; do 
/bin/sleeps 5 
o=`curl -s -k -I $url |grep 'OK' |awk '{print $2}' `
if [[ $o -eq 200 ]];then 
    echo "$url normal 3s"
else
    for i in 1 2 3 ;do
        if [[ $o 

你可能感兴趣的:(centos,linux,运维)