metasploit-framework
metasploit-framework copied to clipboard
metasploit bind:failed
im having this error please anyone help me to get solve this error
Is something already listening on port 8080?
lsof -i :8080
i don't know what service is running in the port 8080, if the port is already listening something ,how could i stop the service ,kindly help me to solve this
On Fri, Jan 13, 2023 at 6:56 PM bcoles @.***> wrote:
Is something already listening on port 8080?
lsof -i :8080
— Reply to this email directly, view it on GitHub https://github.com/rapid7/metasploit-framework/issues/17469#issuecomment-1381848332, or unsubscribe https://github.com/notifications/unsubscribe-auth/A5HPBO7NDV55DITCNHVAPRLWSFJWTANCNFSM6AAAAAAT2LR54U . You are receiving this because you authored the thread.Message ID: @.***>
You can use ss
to check for the services listening on ports
sudo ss -tulpan
after that you can use fuser tool to kill the process that is using that port
sudo fuser -k <port>/<protocol>
Eg.:
fuser -k 8080/tcp
Be careful as this will kill the process running on that port
ohh thank you so much for your reply and help,i'll definitely try to solve this ,incase any issues again ,i'll mail u as soon as possible THANK YOU...!
On Fri, Jan 13, 2023 at 8:12 PM Wrathdemon @.***> wrote:
You can use ss to check for the services listening on ports sudo ss -tulpan after that you can use fuser tool to kill the process that is using that port sudo fuser -k
/ Eg.: fuser -k 8080/tcp Be careful as this will kill the process running on that port — Reply to this email directly, view it on GitHub https://github.com/rapid7/metasploit-framework/issues/17469#issuecomment-1381954191, or unsubscribe https://github.com/notifications/unsubscribe-auth/A5HPBO6DQLFFB7ZC7VBTX43WSFSV7ANCNFSM6AAAAAAT2LR54U . You are receiving this because you authored the thread.Message ID: @.***>
i cleared the before error bind failed, i overcomed but then i updated metasploitable then i run same commands i face this type of error,please help me to get out of this
On Fri, Jan 13, 2023 at 8:12 PM Wrathdemon @.***> wrote:
You can use ss to check for the services listening on ports sudo ss -tulpan after that you can use fuser tool to kill the process that is using that port sudo fuser -k
/ Eg.: fuser -k 8080/tcp Be careful as this will kill the process running on that port — Reply to this email directly, view it on GitHub https://github.com/rapid7/metasploit-framework/issues/17469#issuecomment-1381954191, or unsubscribe https://github.com/notifications/unsubscribe-auth/A5HPBO6DQLFFB7ZC7VBTX43WSFSV7ANCNFSM6AAAAAAT2LR54U . You are receiving this because you authored the thread.Message ID: @.***>
i cleared the before error bind failed, i overcomed but then i updated metasploitable then i run same commands i face this type of error,please help me to get out of this
There is not enough information to provide guidance.
Hi again!
It’s been 60 days since anything happened on this issue, so we are going to close it. Please keep in mind that I’m only a robot, so if I’ve closed this issue in error please feel free to reopen this issue or create a new one if you need anything else.
As a friendly reminder: the best way to see this issue, or any other, fixed is to open a Pull Request.