Updated CentOS to latest release and Flashphoner doesn't work anymore

Corrado Steri

New Member
Hello i am using a 30 days license to test Flashphoner to stream RTSP on a webpage.
It worked all good untill today, when i had the bad idea of updating to latest CentOS release. Streaming doesn't work anymore.
I updated Flashphoner to latest release too but still no joy.
Any solution to this?

regards,

Corrado
 

Max

Administrator
Staff member
Hello
Maybe you have firewall issues with the new Centos.
Try to disable firewall, seLinux, make sure that server is up and running and all ports are listening
This link should be helpful:
https://forum.flashphoner.com/threads/troubleshooting.10768/
If you narrowed down error, please let us know what is error:
1. Core is not started
2. Ports are not listening
3. Ports listening but not reachable over telnet
4. Ports reachable but Two Way Streaming can't connect - FAILED
5. Two Way Streaming is able to connect - ESTABLISHED, but can't play - FAILED
 

Max

Administrator
Staff member
Try to check hostname
It should be resolved to IP address
/etc/hosts
127.0.0.1 myhost

Should be something simple.
if you provide SSH access to support@flashphoner.com, we will check
 

Corrado Steri

New Member
This is what i get from:

tail -f /usr/local/FlashphonerWebCallServer/logs/server_logs/flashphoner.log



13:18:40,841 INFO PluginManager - main Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
13:18:40,845 INFO SipTrunkConfig - main No sip trunk config, load default
13:18:40,846 INFO tchDogServerRegister - main Starting WatchDogServer ...
13:18:40,847 INFO tchDogServerRegister - main WatchDogServer is successfully started with name: com.flashphoner.jmx:type=WatchDogServer
13:18:40,862 INFO A - main Custom watermark file - null
13:18:40,863 WARN A - main Can't read custom watermark file
13:18:40,897 INFO Server - main Post start took 50
13:18:45,426 INFO SipUserAgentListener - Timer-2 Remove by uri sip:sipLogin-38678027@MY_IP:30000
13:18:45,426 INFO SipProviders - Timer-2 Destroy sip provider by uri
13:18:45,427 INFO SipUserAgent - Timer-2 Shutdown instance. Count: 0 this: SIP UA: login: sipLogin assignedPort: 30000 listeningPort: 30000
 

Max

Administrator
Staff member
Hello

Firewall was started. That's why it didn't work for you.
We have stopped firewall
Code:
systemctl stop firewalld
Please check again.

Regarding core.
Version 5.2.x does not use manager process.
So core only process is active and listen ports:
Code:
# netstat -nlp | grep java
tcp        0      0 0.0.0.0:554             0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:1098            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:843             0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:35052           0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:1935            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:8080            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:2001            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:8081            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:8082            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:50999           0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:8888            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:8443            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:8444            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:8445            0.0.0.0:*               LISTEN      4426/java
tcp        0      0 0.0.0.0:9091            0.0.0.0:*               LISTEN      4426/java
udp        0      0 0.0.0.0:1935            0.0.0.0:*                           4426/java
 
Top