mysql自动执行脚本

linux-shell脚本执行sql脚本

#!/bin/bash

echo "start init db, create_tables & init_tables"

service mysqld stop

sleep 1

service mysqld start

sleep 1 

db_curr=`pwd`

mysql <<EOF

source ${db_curr}/db_script/create_tables.sql;

source ${db_curr}/db_script/init_tables.sql;

use mysql;

update user set password=password("123456") where user='root';

flush privileges;

EOF

猜你喜欢

转载自www.cnblogs.com/pengsn/p/13180318.html