E2BIGE2BIG — Argument List Too Long
The total size of the argument list and environment variables passed to exec() exceeds the system limit.
EADDRINUSEThe specified network address and port combination is already bound by another socket.
Another process is already listening on the requested port. This frequently occurs when restarting a server, as the previous socket may be in TIME_WAIT state.
Use SO_REUSEADDR socket option to allow binding to TIME_WAIT addresses. Find the process using the port with ss -tlnp or lsof -i :PORT.
# Find process using port 3000
lsof -i :3000
# Or with ss
ss -tlnp | grep 3000E2BIGThe total size of the argument list and environment variables passed to exec() exceeds the system limit.
EFAULTAn invalid memory address was passed to a system call as an argument.
EEXISTA file creation operation failed because a file with the specified name already exists.
SIGUSR1 (10)A user-defined signal for application-specific purposes. The default action is to terminate.
Exit 139The process crashed due to a segmentation fault (signal 11).
EACCESThe requested access to a file or resource is not allowed by the file permissions.