1,先手动测试shell
linux下面利用shell脚本运行MySQL语句,并在mysql中执行shell脚本
shell脚本:(将最新产生的MYSQL错误日志导到数据表中)
bin/mysql -u root -p11111 <<EOF
use MysqlCenter;
create TEMPORARY table Errlog_info_temp(loginfo varchar(2000),id int primary key AUTO_INCREMENT);
LOAD DATA LOCAL INFILE '/usr/local/mysql/data/loDB192168000046.err' INTO TABLE Errlog_info_temp;
insert into Errlog_info(id,loginfo) select ID,loginfo from Errlog_info_temp where id not in (select id from Errlog_info);
drop table Errlog_info_temp;
EOF
2.提封装成.sh文件并提权
chmod u+x SHELL脚本名
3.执行shell脚本 ./shell.sh
在mysql中运行shell
1. system /usr/local/mysql/shell2.sh
Linux下面利用shell脚本运行MYSQL语句,并在mysql中执行shell脚本