Troubleshooting
Common Issues
chmod +x koneksi-engine/koneksi
chmod +x koneksi-cli/koneksi# 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 # Windowsrequest 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.Last updated