#!/bin/bash service mysqld stop cd /data/mysql_data/data/mytyrenet TargetPath=/data/mysql_data/data/mytyrenet2017/ #cp -f ./file1.txt ./file2.txt /home/xiaosong/2/ cp -f ./web_article.frm ./web_article.MYD ./web_article.MYI $TargetPath cp -f ./web_article_201405.frm ./web_article_201405.MYD ./web_article_201405.MYI $TargetPath service mysqld start echo success
实现原理 :停止数据库,然后copy需要同步的表文件到目标目录,copy成功后,并重新启动数据库
我把上面的文件保存成 same.sh
执行代码: sh same.sh
这样就执行了上面的代码,当看到了 success 这个字符 就代表上面的代码全部执行完毕,成功。
放在开机执行目录里: 一开机就可以执行这个sh文件 进入目录,然后执行 start_proxy.sh
cd /usr/local/TsysAgent/bin && ./start_proxy.sh