stop-ds.bat revision 3824
0N/A
0N/A@echo off
0N/Arem CDDL HEADER START
0N/Arem
0N/Arem The contents of this file are subject to the terms of the
0N/Arem Common Development and Distribution License, Version 1.0 only
0N/Arem (the "License"). You may not use this file except in compliance
0N/Arem with the License.
0N/Arem
0N/Arem You can obtain a copy of the license at
0N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE
0N/Arem or https://OpenDS.dev.java.net/OpenDS.LICENSE.
0N/Arem See the License for the specific language governing permissions
0N/Arem and limitations under the License.
0N/Arem
0N/Arem When distributing Covered Code, include this CDDL HEADER in each
0N/Arem file and include the License file at
0N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
0N/Arem add the following below this CDDL HEADER, with the fields enclosed
873N/Arem by brackets "[]" replaced with your own identifying information:
0N/Arem Portions Copyright [yyyy] [name of copyright owner]
0N/Arem
0N/Arem CDDL HEADER END
0N/Arem
0N/Arem
3233N/Arem Copyright 2006-2008 Sun Microsystems, Inc.
0N/A
0N/Asetlocal
0N/A
857N/Aset PATH=%SystemRoot%
857N/A
481N/Aset OPENDS_INVOKE_CLASS="org.opends.server.tools.StopDS"
3266N/Aset SCRIPT_NAME=stop-ds
1920N/Afor %%i in (%~sf0) do set DIR_HOME=%%~dPsi..
828N/A
3196N/Arem We keep this values to reset the environment before calling start-ds.
3196N/Aset ORIGINAL_JAVA_ARGS=%OPENDS_JAVA_ARGS%
3196N/Aset ORIGINAL_JAVA_HOME=%OPENDS_JAVA_HOME%
3196N/Aset ORIGINAL_JAVA_BIN=%OPENDS_JAVA_BIN%
3196N/A
3824N/Aset INSTALL_ROOT=%DIR_HOME%
3824N/A
3824N/Aset INSTANCE_DIR=
3824N/Afor /f "delims=" %%a in (%INSTALL_ROOT%\instance.loc) do (
3824N/A set INSTANCE_DIR=%%a
3824N/A)
3824N/Aset CUR_DIR=%~dp0
3824N/Acd %INSTALL_ROOT%
3824N/Acd %INSTANCE_DIR%
3824N/Aset INSTANCE_ROOT=%CD%
3824N/Acd %CUR_DIR%
1298N/A
1301N/Aset LOG="%INSTANCE_ROOT%\logs\native-windows.out"
1298N/Aset SCRIPT=stop-ds.bat
1298N/A
1298N/Arem This is the template to use for logging. Make sure to use >>
1298N/Arem echo %SCRIPT%: your-message-here >> %LOG%
1298N/Aecho %SCRIPT%: invoked >> %LOG%
1298N/A
2976N/Arem Set environment variables
2976N/Aset SCRIPT_UTIL_CMD=set-full-environment-and-test-java
3824N/Acall "%INSTALL_ROOT%\lib\_script-util.bat"
2976N/Aif NOT %errorlevel% == 0 exit /B %errorlevel%
857N/A
1298N/Aecho %SCRIPT%: CLASSPATH=%CLASSPATH% >> %LOG%
1298N/A
2650N/A"%OPENDS_JAVA_BIN%" -Xms8M -Xmx8M %SCRIPT_NAME_ARG% org.opends.server.tools.StopDS --checkStoppability %*
832N/A
961N/Aif %errorlevel% == 98 goto serverAlreadyStopped
961N/Aif %errorlevel% == 99 goto startUsingSystemCall
961N/Aif %errorlevel% == 100 goto stopUsingSystemCall
961N/Aif %errorlevel% == 101 goto restartUsingSystemCall
961N/Aif %errorlevel% == 102 goto stopUsingProtocol
961N/Aif %errorlevel% == 103 goto stopAsWindowsService
961N/Aif %errorlevel% == 104 goto restartAsWindowsService
961N/Arem An error or we display usage
961N/Agoto end
832N/A
961N/A:serverAlreadyStopped
1298N/Aecho %SCRIPT%: server already stopped >> %LOG%
3824N/Aif exist "%INSTANCE_ROOT%\logs\server.pid" erase "%INSTANCE_ROOT%\logs\server.pid"
961N/Agoto end
832N/A
961N/A:startUsingSystemCall
1298N/Aecho %SCRIPT%: start using system call >> %LOG%
3196N/Arem Set the original values that the user had on the environment in order to be
3196N/Arem sure that the start-ds script works with the proper arguments (in particular
3196N/Arem if the user specified not to overwrite the environment).
3196N/Aset OPENDS_JAVA_ARGS=%ORIGINAL_JAVA_ARGS%
3196N/Aset OPENDS_JAVA_HOME=%ORIGINAL_JAVA_HOME%
3196N/Aset OPENDS_JAVA_BIN=%ORIGINAL_JAVA_BIN%
3824N/A"%INSTALL_ROOT%\bat\start-ds.bat"
961N/Agoto end
832N/A
961N/A:stopUsingSystemCall
1298N/Aecho %SCRIPT%: stop using system call >> %LOG%
3824N/A"%INSTALL_ROOT%\lib\winlauncher.exe" stop "%INSTANCE_ROOT%"
961N/Agoto end
857N/A
961N/A:restartUsingSystemCall
1298N/Aecho %SCRIPT%: restart using system call >> %LOG%
3824N/A"%INSTALL_ROOT%\lib\winlauncher.exe" stop "%INSTANCE_ROOT%"
832N/Aif not %errorlevel% == 0 goto end
961N/Agoto startUsingSystemCall
857N/A
961N/A:stopUsingProtocol
1298N/Aecho %SCRIPT%: stop using protocol >> %LOG%
3824N/Acall "%INSTALL_ROOT%\lib\_client-script.bat" %*
961N/Agoto end
961N/A
961N/A:stopAsWindowsService
1298N/Aecho %SCRIPT%: stop as windows service >> %LOG%
2650N/A"%OPENDS_JAVA_BIN%" -Xms8M -Xmx8M org.opends.server.tools.StopWindowsService
828N/Agoto end
828N/A
961N/A:restartAsWindowsService
1298N/Aecho %SCRIPT%: restart as windows service, stopping >> %LOG%
2650N/A"%OPENDS_JAVA_BIN%" -Xms8M -Xmx8M org.opends.server.tools.StopWindowsService
961N/Aif not %errorlevel% == 0 goto end
1298N/Aecho %SCRIPT%: restart as windows service, starting >> %LOG%
2650N/A"%OPENDS_JAVA_BIN%" -Xms8M -Xmx8M org.opends.server.tools.StartWindowsService
3824N/A"%OPENDS_JAVA_BIN%" -Xms8M -Xmx8M org.opends.server.tools.WaitForFileDelete --targetFile "%INSTANCE_ROOT%\logs\server.startingservice"
961N/Arem Type the contents the winwervice.out file and delete it.
3824N/Aif exist "%INSTANCE_ROOT%\logs\winservice.out" type "%INSTANCE_ROOT%\logs\winservice.out"
3824N/Aif exist "%INSTANCE_ROOT%\logs\winservice.out" erase "%INSTANCE_ROOT%\logs\winservice.out"
961N/Agoto end
828N/A
832N/A:end
832N/A
1298N/Aecho %SCRIPT%: finished >> %LOG%