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
5065N/Arem Copyright 2006-2010 Sun Microsystems, Inc.
6341N/Arem Portions Copyright 2011-2013 ForgeRock AS
0N/A
0N/Asetlocal
0N/A
857N/Aset PATH=%SystemRoot%
857N/A
5636N/Aset OPENDJ_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.
5636N/Aset ORIGINAL_JAVA_ARGS=%OPENDJ_JAVA_ARGS%
5636N/Aset ORIGINAL_JAVA_HOME=%OPENDJ_JAVA_HOME%
5636N/Aset ORIGINAL_JAVA_BIN=%OPENDJ_JAVA_BIN%
3196N/A
3824N/Aset INSTALL_ROOT=%DIR_HOME%
3824N/A
6302N/Aif "%INSTANCE_ROOT%" == "" (
6302N/A set INSTANCE_ROOT=%INSTALL_ROOT%
3824N/A)
5728N/Aset CUR_DIR=%CD%
3842N/Acd /d%INSTALL_ROOT%
6302N/Acd /d%INSTANCE_ROOT%
3824N/Aset INSTANCE_ROOT=%CD%
3842N/Acd /d%CUR_DIR%
6341N/Aset TEMP_LOG=%TEMP%\logs\
1298N/A
6341N/Aif NOT EXIST %INSTANCE_ROOT%\logs\ (
6341N/A if NOT EXIST %TEMP_LOG% (
6341N/A md %TEMP_LOG%
6341N/A )
6341N/A set LOG="%TEMP_LOG%native-windows.out"
6341N/A) ELSE (
1301N/Aset LOG="%INSTANCE_ROOT%\logs\native-windows.out"
6341N/A)
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
4495N/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
5636N/A"%OPENDJ_JAVA_BIN%" %OPENDJ_JAVA_ARGS% %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
5065N/Agoto writeLastLine
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"
5065N/Agoto writeLastLine
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).
5636N/Aset OPENDJ_JAVA_ARGS=%ORIGINAL_JAVA_ARGS%
5636N/Aset OPENDJ_JAVA_HOME=%ORIGINAL_JAVA_HOME%
5636N/Aset OPENDJ_JAVA_BIN=%ORIGINAL_JAVA_BIN%
3824N/A"%INSTALL_ROOT%\bat\start-ds.bat"
5065N/Agoto writeLastLine
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%
5636N/A"%OPENDJ_JAVA_BIN%" -client org.opends.server.tools.StopWindowsService
828N/Agoto end
828N/A
961N/A:restartAsWindowsService
1298N/Aecho %SCRIPT%: restart as windows service, stopping >> %LOG%
5636N/A"%OPENDJ_JAVA_BIN%" -client org.opends.server.tools.StopWindowsService
961N/Aif not %errorlevel% == 0 goto end
1298N/Aecho %SCRIPT%: restart as windows service, starting >> %LOG%
5636N/A"%OPENDJ_JAVA_BIN%" -client org.opends.server.tools.StartWindowsService
5636N/A"%OPENDJ_JAVA_BIN%" -client 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
5065N/A:writeLastLine
5065N/Aecho %SCRIPT%: finished >> %LOG%
5065N/Agoto end
832N/A
5065N/A:end