Kindly make sure your MCP application is able open ports:
if Windows Server, check the firewall rules are allowing the pwcallmgr.exe application;
if Linux, check if SELinux is not blocking it. The easiest way would be through testing running MCP after running “sudo setenforce 0” on the server and see if it works.
Also, check if there is no other application on the same server using UDP port 20000 (though netstat).
I usually run for that:
(on Linux): sudo netstat -anp | grep :20000 | grep LISTEN
(on Windows): netstat -anbo > netstat.txt & notepad netstat.txt
(it will open a notepad, then lookup for :20000)
Ops… my bad… you wouldn’t get if another process is using that port with that command. Since it is udp, it wouldn’t be showing as “LISTEN” on the netstat command. Try it without that last “grep LISTEN”:
sudo netstat -anp | grep 20000
Dear hsujdik
I tried without LISTEN filtering still there is no application.
Is udp port can be monitored like this.
[xxx@-mcp01 /]$ sudo netstat -anp | grep :20000
[xxx@mcp01 /]$
Thanks for your response.
App is running as a service on a dedicated RHEL 7 server only running MCP and LCA [local control agent port 4999].
Server restarted several times.