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

mysql自动执行脚本

上一篇:五、Djiango初始使用时遇到的坑(No module named 'MySQLdb')


下一篇:kali配置phpmyadmin报错mysqli::__construct(): (HY000/1698): Access denied for user 'root'@'localhost' 解决办法