Hi everybody,
The problem I'm facing is web scripts that need to connect to the server can't find a way to connect to port 1935, it seems to be blocked in some how...
Also, testing from the red5 test page (
http://server.ip.address:5080/demos/port_tester.html) that tests the red5 common ports is also failing, when it should success.
Please note that:
* There is no firewall running on the server.
* Selinux has been disabled.
* No tcpwrappers rules working.
* Red5 service is up and running.
As said before, service is running and connections are responding, from inside and outside the server. But when I connect from any web scripts, it seems to be hang there and the connection is never stablished.
Code:
[root@my.server.com:~]service red5 status
red5 (pid 17731) is running...
Code:
[root@my.server.com:~]telnet localhost 5080
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Code:
[root@my.server.com:~]telnet localhost 1935
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Code:
[root@my.server.com:~]lsof -i:1935
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
java 17731 root 92u IPv6 3864989 TCP *:macromedia-fcs (LISTEN)
[root@my.server.com:~]
Code:
[root@my.server.com:~]lsof -i:5080
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
java 17731 root 100u IPv6 3864990 TCP *:5080 (LISTEN)
[root@my.server.com:~]
Hope you can give me any ideas about why it's not working on the port pass test. I attached the image of the failed test so you can take a look.
Thanks a lot!