Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,13 @@ All of these tools are supplied with macOS.

To terminate press control+z.

* Find processes using particular ports (e.g. port 8021 used by fs_cli to talk to freeswitch)
```xml
lsof
sudo lsof -i TCP:8021 | grep 8021
```
Note that under some circumstances an Apple ftp proxy service can end up listening to port 8021. In that case `sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ftp-proxy.plist` does the job of stopping the service.



---