The 0.6.2 war version doesnt open 8088 but you can do it manually by adding
this entry to your tomcat/conf/server.xml

Tomcat 5
    <Connector port="8088" maxHttpHeaderSize="8192"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="8080" acceptCount="100"
               connectionTimeout="20000" disableUploadTimeout="true" />

Tomcat 6
    <Connector port="8088" protocol="HTTP/1.1"
               maxThreads="150" connectionTimeout="20000"
               redirectPort="8080" />

RTMPT is simply a servlet and in the standalone version an HTTP port 8088 is
opened for it by the embedded servlet container. I a war version it is red5
that is technically "embedded" and doesnt have control over the container.

Paul

On 9/5/07, Lenny Sorey <[EMAIL PROTECTED]> wrote:
>
> David,
>
> Forgot to mention but if you move to the latest RED5 Trunk,
> the you will have to look in the build_war.properties file rather than the
> red5.properties file to make your changes to the rtmpt port.
>
> Prior to the latest Trunk,you make the changes in red5.properties.
>
> Both of thee files reside in the red5/conf/war folder.
>
> Lenny
>
> On 9/5/07, Lenny Sorey <[EMAIL PROTECTED]> wrote:
> >
> > Hi David,
> >
> > RTMPT works fine.
> >
> > I also run the same setup
> > Java 1.6_2, Tomcat 6.0.13 / Apache 2.2.4 / Mod_jk, etc.
> >
> > You have to reference port 8080 for rtmpt instead of port 8080
> > in order for Tomcat to reroute rtmpt via 8009 to port 80.
> >
> > The only other alternative is to make changes to accommodate
> > port 8088 in Tomcat's server.xml file.
> >
> > Make this change and try it again.
> >
> > Regards,
> >
> > Lenny
> >
> >
> >  On 9/5/07, David Engelmaier <[EMAIL PROTECTED] > wrote:
> > >
> > > I think to solve this issue we should analyse the case. I have the
> > > following configuration:
> > > Linux Debian Etch 2.6.18-4-amd64
> > > Java Sun 1.6.0-b105
> > > Apache Tomcat/5.5
> > > Apache 2.2.4
> > > Mod_Jk
> > > Red5 0.6.2 stable WAR
> > >
> > > The thing is the RTMPT service doesn't listen on the 8088 port as it's
> > > set up in the red.properties and classes/red5.properties
> > > I don't think it's a problem of the Tomcat container as I saw someone
> > > saying here in the discussion since if I run a standalone
> > > version a use nmap to scan the ports I get the following:
> > >
> > > Port 1935 - open/rtmp
> > > Port 8088 - open/unknown
> > >
> > > This shows in the standalone version the RTMPT service is listening on
> > > port 8088 and using the port tester I can connect to it localhost:8088
> > >
> > > If I run the nmap on a WAR version I get the following:
> > >
> > > Port 1935 - open/rtmp
> > > Port 8088 - closed/unknown
> > >
> > >
> > > This shows the RTMP service is listening on the 1935 port regardless
> > > the
> > > Tomcat container in which it runs listens on port 8080 and
> > > 8009(jk_mod),
> > > so I guess it should be the same for the RTMPT service listening on
> > > 8088, then when we solve why it's not working on this port we can go
> > > on with
> > > the Mod_jk redirection(I've got this working for Apache2/Tomcat).
> > >
> > > I see Lenny and Joachim are the only people that got the RTMPT working
> > > in the WAR version. I've read this mailing list and tutorials on the
> > > net and
> > > Red5 wiki, done test, but this is the point where I got, I can
> > > redirect
> > > trafic to port 80 to the Tomcat, but since the RTMPT service is just
> > > not
> > > listening
> > > on its port I'm not getting any further with setting up the RTMPT :(.
> > >
> > > Any help largely appreciated
> > > Thanks
> > > David Engelmaier
> > >
> > > _______________________________________________
> > > Red5 mailing list
> > > Red5@osflash.org
> > > http://osflash.org/mailman/listinfo/red5_osflash.org
> > >
> >
> >
>
> _______________________________________________
> Red5 mailing list
> Red5@osflash.org
> http://osflash.org/mailman/listinfo/red5_osflash.org
>
>


-- 
It is difficult to free fools from the chains they revere. - Voltaire
_______________________________________________
Red5 mailing list
Red5@osflash.org
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to