Advertisement
infogulch

mysql_start.bat

Apr 9th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. @echo off
  2. echo Please dont close Window while MySQL is running
  3. echo MySQL is trying to start
  4. echo Please wait  ...
  5. echo MySQL is starting with mysql\bin\my.ini (console)
  6.  
  7. pushd %~dp0mysql\
  8.  
  9. bin\mysqld --defaults-file="bin/my.ini" --standalone --console
  10.  
  11. popd
  12.  
  13. if errorlevel 1 goto error
  14. goto finish
  15.  
  16. :error
  17. echo.
  18. echo MySQL could not be started
  19. pause
  20.  
  21. :finish
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement