- Rust-based digital asset management system - Video analysis: ASR, OCR, YOLO, Face, Pose - RAG capabilities with Qdrant vector database - Multi-database support: PostgreSQL, Redis, MongoDB - Monitoring system with launchd plists - n8n workflow automation integration
26 lines
640 B
Bash
Executable File
26 lines
640 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Momentry Runtime Stop Script
|
|
|
|
echo "Stopping Momentry Runtime..."
|
|
|
|
PID_FILE="/Users/accusys/momentry_core_0.1/momentry_runtime/logs/momentry.pid"
|
|
|
|
if [ -f "$PID_FILE" ]; then
|
|
PID=$(cat "$PID_FILE")
|
|
if kill -0 "$PID" 2>/dev/null; then
|
|
echo "Stopping API server (PID: $PID)..."
|
|
kill "$PID"
|
|
rm -f "$PID_FILE"
|
|
echo "Momentry Runtime stopped."
|
|
else
|
|
echo "Process not running."
|
|
rm -f "$PID_FILE"
|
|
fi
|
|
else
|
|
echo "PID file not found. Trying to find and kill momentry processes..."
|
|
pkill -f "momentry server" || true
|
|
echo "Momentry Runtime stopped."
|
|
fi
|