MacOS
The Mac M1/M2 issue
“Error saving credentials: error storing credentials - err: exit status 1, out: `Posthttp://ipc/registry/credstore-updated: dial unix /var/root/Library/Containers/com.docker.docker/Data/backend.sock: connect: no such file or directory`”
Solution
Go to this directory “~/.docker/config.json” and edit the "credsStore=desktop" to "credStore=desktop":
Look for the port
you want to kill
or the process
lsof -i:8834
# COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
# com.docke 77400 salehmak 141u IPv6 0x9a01c12acefde34b 0t0 TCP *:8834 (LISTEN)
ps -A | grep :8834
ps -Ac -o pid,comm
Remove Nessus from your macOS
# All these folders has to be removed
/Library/Nessus
/Library/LaunchDaemons/com.tenablesecurity.nessusd.plist
/Library/PreferencePanes/Nessus Preferences.prefPane
/Applications/Nessus
#remove this as well
sudo launchctl remove com.tenablesecurity.nessusd
On windows:
netstat -ano | findstr :9392
taskkill /f /pid <process-id>