Home > database >  web server failed to start port 7081 was already in use
web server failed to start port 7081 was already in use

Time:11-03

identify and stop on port 7081 or configure this application to listen on another port.

how to correct this error.

enter image description here

CodePudding user response:

Change your program to bind on a different port or kill the existing process running on that port.

Run lsof -i :7081 This will display details of process that is listening on port 7081.
copy the process ID 
Run kill -9 <ProcessID> example kill -9 321321
  • Related