-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstop.bat
More file actions
26 lines (22 loc) · 704 Bytes
/
stop.bat
File metadata and controls
26 lines (22 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
REM SentinalX Stop Script
REM This script stops all SentinalX services
echo ========================================
echo Stopping SentinalX Services
echo ========================================
echo.
echo [1/2] MongoDB status...
echo Using MongoDB Atlas (Cloud Database) - No local containers to stop
echo [OK] MongoDB Atlas is managed in the cloud
echo.
echo [2/2] Backend server stop...
echo If the backend is running in another window, press Ctrl+C there
echo Or close the terminal window running uvicorn
echo.
echo ========================================
echo All services stopped
echo ========================================
echo.
echo To start again, run: start.bat
echo.
pause