Files
fn_registry/bash/functions/infra/port_kill.md
T
egutierrez 2a3d780347 feat(doctor): add fn doctor CLI + 14 functions for system management
Adds `fn doctor` read-only diagnostic command with subcommands artefacts,
services, sync, uses-functions, unused, and --json flag for agents.
Each subcommand wraps a registry function in functions/infra/.

New functions:
- artefact_doctor, services_status, pc_locations_drift,
  audit_uses_functions, find_unused_functions (Go diagnostics)
- backup_sqlite_db, rotate_backups, wait_for_http, wait_for_port,
  port_kill, tail_journal, pre_commit_hook_install (bash utilities)
- notify_telegram (Go HTTP)
- backup_all pipeline (tag launcher)

Plus prior session leftovers (scan_secrets_in_dirty, append_diary_entry,
git utilities, http_session_cookie_middleware, compile/full-git pipelines).

Fixes pc_locations_drift filepath.Join bug with absolute dir_path.
Documents fn doctor in CLAUDE.md, .claude/rules/fn_doctor.md (rule 23),
docs/architecture.md, CHANGELOG.md (2026-05-07), and diary entry.

First fn doctor uses-functions run found drift in 7/12 apps (deuda
para sincronizar app.md con imports reales).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-07 01:42:10 +02:00

2.1 KiB

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, params, output, tested, tests, test_file_path, file_path
name kind lang domain version purity signature description tags uses_functions uses_types returns returns_optional error_type imports params output tested tests test_file_path file_path
port_kill function bash infra 1.0.0 impure port_kill(port: int, signal: string) -> void Mata los procesos que escuchan en un puerto TCP dado. Idempotente: si no hay proceso en el puerto retorna exit 0. Hace un segundo intento con SIGKILL si el primer intento con signal no libera el puerto.
port
kill
process
tcp
false error_go_core
name desc
port Numero de puerto TCP (1-65535) cuyos procesos en estado LISTEN seran terminados.
name desc
signal Signal opcional para kill. Default TERM. Acepta KILL, INT, TERM, HUP o numerico (9, 15, ...). Si el proceso sobrevive, se reintenta automaticamente con KILL.
Imprime a stdout una linea por cada PID matado (KILLED pid=X signal=Y port=Z) o NO_PROCESS si el puerto ya estaba libre. Errores a stderr. Exit codes: 0=OK, 2=puerto invalido, 3=puerto sigue ocupado tras SIGKILL, 4=permiso denegado, 5=ni lsof ni fuser disponibles. false
bash/functions/infra/port_kill.sh

Ejemplo

source bash/functions/infra/port_kill.sh

# Matar proceso en puerto 8080 con SIGTERM (default)
port_kill 8080

# Matar proceso en puerto 3000 con SIGKILL directo
port_kill 3000 KILL

Notas

Idempotente: si ningun proceso escucha en el puerto, imprime NO_PROCESS port=<port> y retorna 0 sin error.

Preferencia de herramienta: usa lsof -ti tcp:<port> -sTCP:LISTEN si esta disponible; fallback a fuser -n tcp <port>. Si ninguno esta instalado, retorna exit 5.

Logica de reintento: tras enviar la signal inicial espera 2 segundos. Si el puerto sigue ocupado y la signal no era KILL/9, realiza un segundo intento con SIGKILL. Si tras ese segundo intento el puerto sigue bloqueado, retorna exit 3.

Permisos: si los PIDs pertenecen a root y el invocador no tiene privilegios, kill fallara y se reporta PERMISSION_DENIED pid=<pid> a stderr con exit 4. Ejecutar con sudo si es necesario.