Modify the configuration files
[holmes/dsa.git] / dmaap-dsa-standalone / src / main / assembly / bin / stop.bat
1 @REM\r
2 @REM Copyright 2017 ZTE Corporation.\r
3 @REM\r
4 @REM Licensed under the Apache License, Version 2.0 (the "License");\r
5 @REM you may not use this file except in compliance with the License.\r
6 @REM You may obtain a copy of the License at\r
7 @REM\r
8 @REM     http://www.apache.org/licenses/LICENSE-2.0\r
9 @REM\r
10 @REM Unless required by applicable law or agreed to in writing, software\r
11 @REM distributed under the License is distributed on an "AS IS" BASIS,\r
12 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13 @REM See the License for the specific language governing permissions and\r
14 @REM limitations under the License.\r
15 @REM\r
16 \r
17 @echo off\r
18 title stopping engine-d-service\r
19 \r
20 set HOME=%~dp0\r
21 set Main_Class="org.onap.holmes.dsa.dmaap.DmaapDsaActiveApp"\r
22 \r
23 echo ================== dmaap-dsa-service info =============================================\r
24 echo HOME=$HOME\r
25 echo Main_Class=%Main_Class%\r
26 echo ===============================================================================\r
27 \r
28 echo ### Stopping dmaap-dsa-service\r
29 cd /d %HOME%\r
30 \r
31 for /f "delims=" %%i in ('"%JAVA_HOME%\bin\jcmd"') do (\r
32   call find_kill_process "%%i" %Main_Class%\r
33 )\r
34 exit