41 lines
1.2 KiB
Batchfile
Executable File
41 lines
1.2 KiB
Batchfile
Executable File
@echo off
|
|
:: Copyright 1999-2018 Alibaba Group Holding Ltd.
|
|
:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
:: you may not use this file except in compliance with the License.
|
|
:: You may obtain a copy of the License at
|
|
::
|
|
:: http://www.apache.org/licenses/LICENSE-2.0
|
|
::
|
|
:: Unless required by applicable law or agreed to in writing, software
|
|
:: distributed under the License is distributed on an "AS IS" BASIS,
|
|
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
:: See the License for the specific language governing permissions and
|
|
:: limitations under the License.
|
|
|
|
if not exist "%JAVA_HOME%\bin\jps.exe" (
|
|
echo Please set the JAVA_HOME variable in your environment to the correct JDK directory.
|
|
echo JDK8 or later is recommended!
|
|
EXIT /B 1
|
|
)
|
|
|
|
setlocal
|
|
|
|
set "PATH=%JAVA_HOME%\bin;%PATH%"
|
|
|
|
echo Killing Nacos server...
|
|
|
|
:: Find and kill Nacos server process
|
|
set "NACOS_RUNNING=false"
|
|
for /f "tokens=1" %%i in ('jps -m ^| find "nacos.nacos"') do (
|
|
set "NACOS_RUNNING=true"
|
|
taskkill /F /PID %%i
|
|
)
|
|
|
|
if "%NACOS_RUNNING%"=="true" (
|
|
echo Nacos server stopped.
|
|
) else (
|
|
echo Nacos server is not running.
|
|
)
|
|
|
|
echo Done!
|