#!/bin/bash echo "================================" echo "Event Service 확인 중..." echo "================================" sleep 3 echo "" echo "1️⃣ 프로세스 확인" jps -l | grep EventServiceApplication && echo "✅ 프로세스 실행 중" || echo "❌ 프로세스 없음" echo "" echo "2️⃣ 포트 8082 확인" netstat -ano | findstr ":8082" | findstr "LISTENING" && echo "✅ 8082 포트 리스닝" || echo "❌ 8082 포트 리스닝 안됨" echo "" echo "3️⃣ Health Check" curl -s http://localhost:8082/actuator/health 2>&1 | head -10 echo "" echo "4️⃣ 최근 로그 (마지막 15줄)" tail -15 logs/event-service.log echo "" echo "================================"