通过批处理(bat)命令创建mysql数据库及用户等

1、建立数据库文件:mysqlCreatDB.sql

create database Mydb

2、为用户赋予权限文件:grantUser.sql

grant select,insert,update,delete,index,execute on Mydb.* to admin@"%" identified by "123456";

3、还原数据库文件:Mydb.sql

4、批处理文件:mysqlConfig.bat

@ECHO OFF
           @set input1=
           @set /p input1=请输入MySQL数据库root用户的密码:

:begin
           mysql -uroot -p%input1% < mysqlCreatDB.sql

mysql -uroot -p%input1% < grantUser.sql

mysql -uroot -p%input1% usbhostdb < usbhostdb.sql

@echo MySql数据库配置完成
           pause
           :end

上一篇:Codeforces 583D. Once Again... (LIS变形)


下一篇:Spark以yarn-client提交任务时报错超时,Connection to 192.168.. /has been quiet forms while there are outstanding requests. Failed to send RPC.....