mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-20 04:35:32 +00:00
11 lines
215 B
Bash
Executable File
11 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Making sure to stop Sailing Analytics server by its PID"
|
|
kill `cat server/server.pid`
|
|
sleep 5
|
|
rm server.pid
|
|
|
|
echo "Stopping mongodb..."
|
|
kill `cat mongodb-data/mongo.pid`
|
|
rm mongodb-data/mongo.pid
|