jw项目windows环境软件安装
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
445 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. chcp 65001
  2. cd /d d:\asb\
  3. @SET sqlpath=%~dp0mysql
  4. @setx /M PATH "%sqlpath%\bin;%path%"
  5. @echo 初始化数据库配置文件
  6. @%sqlpath%\bin\mysqld.exe --initialize-insecure --user=mysql --console
  7. @%sqlpath%\bin\mysqld.exe --install
  8. @net stop mysql
  9. @net start mysql
  10. @%sqlpath%\bin\mysql.exe -uroot < %sqlpath%\init.sql
  11. @%sqlpath%\bin\mysql.exe -uroot -p123456< %sqlpath%\createdb.sql
  12. @%sqlpath%\bin\mysql.exe -uroot -p123456< %sqlpath%\asb.sql