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
posted @ 2020-06-23 09:18  pengsn  阅读(786)  评论(0编辑  收藏  举报