Old:Bugs 3.5-Apollo: Close bat: Difference between revisions

From The Uniform Server Wiki
Jump to navigation Jump to search
(New page: <span id="top"></span> <div style="padding:0;margin:0; border-bottom:3px inset #000000"> {| | MPG UniCenter || Bugs 3.5-Apollo: [[Bugs 3.5-Apollo: Introduct...)
 
m (Protected "Bugs 3.5-Apollo: Close bat" [edit=sysop:move=sysop])
(No difference)

Revision as of 20:18, 27 May 2008

MPG UniCenter

Bugs 3.5-Apollo: Introduction | Server_Start.bat | Disk Start.vbs | Close.bat | config.inc.php | apanel - blown away | Combined bug fix

Uniform Server 3.5-Apollo known bugs or issues

Close.bat

Bug fix to pick-up MySQL root password

File: Close.bat
Location: *\Uniform Server\udrive\home\admin\program

Problem: This script shuts down the MySQL server and removes virtual drive created. When MySQL root password is changed this script fails to pick it up and server remains running.

Solution: Copy MySQL password from file mysql_password into a variable and use that to shut down the server. Note pushd is required to define a new reference (where this script is located) point for Windows otherwise it will use the location of the calling script. After the script has run original location of the calling script is restored by popd.

Changes as shown:
: Name: Close.bat
: Location: *\Uniform Server\udrive\home\admin\program
: Created By: The Uniform Server Development Team
: Original By: Olajide Olaolorun (empirex)
: Edited Last By: MPG 14-4-08
: Comment: Added push and popd to define current working directory.
: This allows the MySQL password to be picked up.
: This password is required to correctly shutdown MySQL server.

@echo off
:Define current working directory
pushd %~dp0

set Disk=%1
IF "%Disk%"=="" set Disk=w
%Disk%:\home\admin\program\pskill.exe mysqld-opt.exe
IF ERRORLEVEL 1 goto nomysql

:MySQL server is running get password
SET /P pass=<..\www\mysql_password

:Access server using password and shutdown server

:### Next two lines should be on a single line #####

%Disk%:\usr\local\mysql\bin\mysqladmin.exe --character-sets-dir="/usr/local/mysql/share/charsets/"
 --user=root --password=%pass% shutdown

:nomysql

:Kill off virtual drive
subst %Disk%: /D

:Restore original location
popd


Download

Download this file Close.bat.txt save it as Close.bat copy to folder *\Uniform Server\udrive\home\admin\program

Note: Allow it to overwrite existing file.

Forum reference

Additional information or background can be found on these forum pages.

The above is a possible cause for the annoying beep in this forum post

Proposed solution

See above.

Top


Ric