mysql 접속에러시 재부팅 하는 배치파일
C:\Documents and Settings\nopul>type dbs.bat
mysqladmin processlist
echo errorlevel=%errorlevel%
if errorlevel==0 echo "양호한 상태입니다."
if errorlevel==1 shutdown.exe -r
mysqladmin processlist - mysqladmin processlist 실행
echo errorlevel=%errorlevel% - 에러코드를 보여줌(안보여 줘도 됨)
if errorlevel==0 echo "양호한 상태입니다." - 0 이면 "양호한 상태입니다" 출력
if errorlevel==1 shutdown.exe -r - 1이면 재부팅 실행.
이것을 예약된 작업에 등록하면 됩니다.