문제 해결
일반적인 문제
1. 권한이 거부되었습니다(Linux/macOS)
chmod +x koneksi-engine/koneksi
chmod +x koneksi-cli/koneksi2. 이미 사용 중인 포트
# Find process using port
lsof -i :3080 # Linux/macOS
netstat -ano | findstr :3080 # Windows
# Kill process
kill -9 <PID> # Linux/macOS
taskkill /PID <PID> /F # Windows3. 연결이 거부됨
방화벽 설정을 확인하세요.
.env 파일에서 API_URL을 확인하세요.
네트워크 연결을 확인하세요.
4. 엔진 연결 실패
request failed: Get "http://localhost:3080/check-health": dial tcp [::1]:3080: connectex: No connection could be made because the target machine actively refused it..
Please ensure the engine service is running and accessible.다음을 확인하여 엔진 서비스가 실행 중인지 확인하세요.
lsof -i :3080 # Linux/macOS
netstat -ano | findstr :3080 # Windows실행 중인 작업/서비스가 없으면 설치 CLI를 다시 실행하고 옵션 2를 선택해야 합니다.
Last updated