2011-09-09 00:12:56 +08:00
|
|
|
@echo off
|
|
|
|
|
REM The contents of this file are subject to the Mozilla Public License
|
|
|
|
|
REM Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
|
REM compliance with the License. You may obtain a copy of the License
|
|
|
|
|
REM at http://www.mozilla.org/MPL/
|
|
|
|
|
REM
|
|
|
|
|
REM Software distributed under the License is distributed on an "AS IS"
|
|
|
|
|
REM basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
|
|
|
REM the License for the specific language governing rights and
|
|
|
|
|
REM limitations under the License.
|
|
|
|
|
REM
|
|
|
|
|
REM The Original Code is RabbitMQ.
|
|
|
|
|
REM
|
2013-07-01 17:49:14 +08:00
|
|
|
REM The Initial Developer of the Original Code is GoPivotal, Inc.
|
2014-03-18 01:25:24 +08:00
|
|
|
REM Copyright (c) 2007-2014 GoPivotal, Inc. All rights reserved.
|
2011-09-09 00:12:56 +08:00
|
|
|
REM
|
|
|
|
|
|
|
|
|
|
setlocal
|
|
|
|
|
|
|
|
|
|
rem Preserve values that might contain exclamation marks before
|
|
|
|
|
rem enabling delayed expansion
|
|
|
|
|
set TDP0=%~dp0
|
|
|
|
|
set STAR=%*
|
|
|
|
|
setlocal enabledelayedexpansion
|
|
|
|
|
|
2015-05-13 10:12:57 +08:00
|
|
|
if exist "%RABBITMQ_BASE%\rabbitmq-env.bat" (
|
|
|
|
|
call "%RABBITMQ_BASE%\rabbitmq-env.bat"
|
|
|
|
|
)
|
|
|
|
|
|
2013-02-15 22:30:38 +08:00
|
|
|
if "!RABBITMQ_SERVICENAME!"=="" (
|
|
|
|
|
set RABBITMQ_SERVICENAME=RabbitMQ
|
|
|
|
|
)
|
|
|
|
|
|
2011-09-26 18:43:10 +08:00
|
|
|
if "!RABBITMQ_BASE!"=="" (
|
2013-02-15 22:30:38 +08:00
|
|
|
set RABBITMQ_BASE=!APPDATA!\!RABBITMQ_SERVICENAME!
|
2011-09-26 18:43:10 +08:00
|
|
|
)
|
|
|
|
|
|
2013-11-05 23:13:03 +08:00
|
|
|
if "!RABBITMQ_NODENAME!"=="" (
|
|
|
|
|
set RABBITMQ_NODENAME=rabbit@!COMPUTERNAME!
|
|
|
|
|
)
|
|
|
|
|
|
2011-09-09 00:12:56 +08:00
|
|
|
if not exist "!ERLANG_HOME!\bin\erl.exe" (
|
|
|
|
|
echo.
|
|
|
|
|
echo ******************************
|
2011-09-09 19:11:54 +08:00
|
|
|
echo ERLANG_HOME not set correctly.
|
2011-09-09 00:12:56 +08:00
|
|
|
echo ******************************
|
|
|
|
|
echo.
|
|
|
|
|
echo Please either set ERLANG_HOME to point to your Erlang installation or place the
|
|
|
|
|
echo RabbitMQ server distribution in the Erlang lib folder.
|
|
|
|
|
echo.
|
2015-02-26 02:19:16 +08:00
|
|
|
exit /B 1
|
2011-09-09 00:12:56 +08:00
|
|
|
)
|
|
|
|
|
|
2011-09-22 23:18:32 +08:00
|
|
|
if "!RABBITMQ_ENABLED_PLUGINS_FILE!"=="" (
|
|
|
|
|
set RABBITMQ_ENABLED_PLUGINS_FILE=!RABBITMQ_BASE!\enabled_plugins
|
|
|
|
|
)
|
|
|
|
|
|
2012-06-22 19:57:51 +08:00
|
|
|
if "!RABBITMQ_PLUGINS_DIR!"=="" (
|
|
|
|
|
set RABBITMQ_PLUGINS_DIR=!TDP0!..\plugins
|
|
|
|
|
)
|
2011-09-09 19:11:54 +08:00
|
|
|
|
2015-01-28 21:03:17 +08:00
|
|
|
"!ERLANG_HOME!\bin\erl.exe" ^
|
|
|
|
|
-pa "!TDP0!..\ebin" ^
|
|
|
|
|
-noinput ^
|
|
|
|
|
-hidden ^
|
|
|
|
|
!RABBITMQ_CTL_ERL_ARGS! ^
|
|
|
|
|
-s rabbit_plugins_main ^
|
|
|
|
|
-enabled_plugins_file "!RABBITMQ_ENABLED_PLUGINS_FILE!" ^
|
|
|
|
|
-plugins_dist_dir "!RABBITMQ_PLUGINS_DIR:\=/!" ^
|
|
|
|
|
-nodename !RABBITMQ_NODENAME! ^
|
|
|
|
|
-extra !STAR!
|
2011-09-09 00:12:56 +08:00
|
|
|
|
|
|
|
|
endlocal
|
|
|
|
|
endlocal
|