Horje
free port in linux Code Example
free port in linux
netstat -tulnap        // list all ports and processes
netstat -anp|grep "port_number"     // show port details
sudo fuser -k Port_Number/tcp       // free the port needed
# or
lsof -n -i :'port-number' | grep LISTEN  // get port details
# sample  response:  java   4744 (PID)  test  364u  IP0 asdasdasda   0t0  TCP *:port-number (LISTEN)
kill -9 PID  // free port
linux free port 8080
fuser -n tcp -k 9001 




Shell

Related
how to install postman via snap Code Example how to install postman via snap Code Example
ubuntu keepass2 Code Example ubuntu keepass2 Code Example
An error occurred while uploading the sketch avrdude: ser_open(): can't open device "/dev/ttyUSB0": Permission denied Code Example An error occurred while uploading the sketch avrdude: ser_open(): can't open device "/dev/ttyUSB0": Permission denied Code Example
install postman ubuntu Code Example install postman ubuntu Code Example
install postman api fedora Code Example install postman api fedora Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
22