Theraze
Active member
So it looks like you have a couple steps here, if you really want to fix it. Or at least figure out what's messing you up.
Start by, with mafia fully closed, following Apple's instructions to see which ports are open. From http://support.apple.com/kb/PH10793. Check if it sees 60080 as in use already... if it does, great! That's what you're experiencing, so it SHOULD see it already being used.
Once you verify that it IS officially being used (or you can skip straight here, but I like to work methodically through steps when possible to verify that I'm not missing something obvious), you can try to figure out which program is messing you up. Following the steps from http://stackoverflow.com/questions/4421633/who-is-listening-on-a-given-tcp-port-on-mac-os-x, you're basically going to run either this:
sudo lsof -iTCP:60080 -sTCP:LISTEN
or this:
sudo lsof -n -i4TCP:60080 | grep LISTEN
The top one is for Mountain Lion or newer, the bottom is supposed to work for older OS X. Anyways, once you know which program is messing you up, you can try to resolve that. For example, if you've told your torrent program to listen to port 60080, change it to something else. But you won't know unless you either check each program individually, or use something like that to scan for which process has hooked the port.
Start by, with mafia fully closed, following Apple's instructions to see which ports are open. From http://support.apple.com/kb/PH10793. Check if it sees 60080 as in use already... if it does, great! That's what you're experiencing, so it SHOULD see it already being used.
Once you verify that it IS officially being used (or you can skip straight here, but I like to work methodically through steps when possible to verify that I'm not missing something obvious), you can try to figure out which program is messing you up. Following the steps from http://stackoverflow.com/questions/4421633/who-is-listening-on-a-given-tcp-port-on-mac-os-x, you're basically going to run either this:
sudo lsof -iTCP:60080 -sTCP:LISTEN
or this:
sudo lsof -n -i4TCP:60080 | grep LISTEN
The top one is for Mountain Lion or newer, the bottom is supposed to work for older OS X. Anyways, once you know which program is messing you up, you can try to resolve that. For example, if you've told your torrent program to listen to port 60080, change it to something else. But you won't know unless you either check each program individually, or use something like that to scan for which process has hooked the port.