check if port is open code example
Example 1: linux see used ports
netstat -tulpn
Example 2: check what ports are open linux
## if you use linux
sudo ss -tulw
Example 3: check which application is using port
In Windows CMD/Powershell:
netstat -aon | findstr '[port_number]'