Hi Marc,

I dont see any thing wrong with the snippts of your configuration files. 
I have my apache, tomcat integrated with mod_jk on solaris and Linux box 
as well. I have even more advanced where I load balance the tomcat by 
running different tomcat instances in production invironment.

Try having a look in the logs of your tomcat. You may get some 
information. Also look in the mod_jk.log log file of the jk connectior. 
You can do a tail -f mod_jk.log and monitor the logs when you access the 
URL. You sould get some error there.

You can also post your complete configuration files. I can try them on 
my server and check if I can find some thing.

Raj
Marc wrote:
> Yes, I can, and before configure ajp13, I could access to the page using apache on 
>port
> 80 (I could see the page source, of course).
> 
> Marc
> 
> Raj Saini wrote:
> 
> 
>>Hi Marc,
>>
>>Can you see the JSP page in standalone Tomcat? Test if you can see the
>>apge on port 8080.
>>
>>Raj
>>Marc wrote:
>>
>>>Hi Raj,
>>>I've defined an application on apache (without using virtual hosting (I've tried
>>>using it, with the same results)) with:
>>>DocumentRoot "/var/www/html/"
>>>JkMount /*.jsp ajp13
>>>
>>>There I've placed a jsp page, that just writes something in the browser.
>>>
>>>In my server.xml, I've defined a Context with docBase="/var/www/html" and path=""
>>>
>>>(the host is localhost)
>>>
>>>
>>>Marc
>>>
>>>Raj Saini wrote:
>>>
>>>
>>>
>>>>What is the URL you are using? Your Jk worker will only root the *.jsp
>>>>requests to tomcat.
>>>>
>>>>Try changing your jkMount directive to:
>>>>
>>>>JkMount /* ajp13
>>>>
>>>>Raj
>>>>
>>>>Marc wrote:
>>>>
>>>>
>>>>>Hi Raj, here is my workers.properties, it's located in
>>>>>$CATALINA_HOME/conf
>>>>>
>>>>>ps=/
>>>>>worker.list=ajp13
>>>>>
>>>>>worker.ajp13.port=8009
>>>>>worker.ajp13.host=localhost
>>>>>worker.ajp13.type=ajp13
>>>>>
>>>>>and in my httpd.conf:
>>>>>
>>>>>
>>>>>########## Tomcat setup ##########
>>>>>
>>>>><IfModule !mod_jk.c>
>>>>>LoadModule jk_module modules/mod_jk.so
>>>>></IfModule>
>>>>>
>>>>>JkWorkersFile "/usr/local/jakarta-tomcat-4.1.12/conf/workers.properties"
>>>>>JkLogFile "/usr/local/jakarta-tomcat-4.1.12/logs/mod_jk.log"
>>>>>
>>>>>JkLogLevel debug
>>>>>
>>>>>########## End Tomcat setup ##########
>>>>>
>>>>>
>>>>>JkMount /*.jsp ajp13
>>>>>
>>>>>(I've defined a <Context path=""...> in my server.xml)
>>>>>
>>>>>Thanks!!!!
>>>>>
>>>>>Marc
>>>>>
>>>>>Raj Saini wrote:
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>>There must be some thing wrong with your worker.properties or the
>>>>>>configuration of apache.
>>>>>>
>>>>>>Please post your worker.properties and relevent part of the apache
>>>>>>configuration. Your apache configuration may be in mod_jk.conf which
>>>>>
>>>>>is
>>>>>
>>>>>
>>>>>
>>>>>>generally included in http.conf.
>>>>>>
>>>>>>Raj Saini
>>>>>>
>>>>>>Marc Vila P�rez wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>>>Hi!!!
>>>>>>>I'm using tomcat 4.1.12, apache 1.3.22 and jdk 1.4.1, on Linux Red
>>>>>>
>>>>>Hat.
>>>>>
>>>>>
>>>>>
>>>>>>>I cannot connect to execute jsp pages via apache. I've configured
>>>>>>
>>>>>tomcat
>>>>>
>>>>>
>>>>>
>>>>>>>and apache to connect them simultaneously. To use ajp13 protocol,
>>>>>>
>>>>>I've
>>>>>
>>>>>
>>>>>
>>>>>>>uncommented the next connector on server.xml (and commented the
>>>>>>
>>>>>default
>>>>>
>>>>>
>>>>>
>>>>>>>Coyote connector listening on port 8009, jk2, i think):
>>>>>>>
>>>>>>><!-- Define an AJP 1.3 Connector on port 8009 -->
>>>>>>>  <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
>>>>>>>             port="8009" minProcessors="5" maxProcessors="75"
>>>>>>>             acceptCount="10" debug="9"/>
>>>>>>>
>>>>>>>When I start tomcat, using ./catalina.sh run, I can see this on the
>>>>>>>screen:
>>>>>>>
>>>>>>>[root@telemako bin]# ./catalina.sh run
>>>>>>>Using CATALINA_BASE:   /usr/local/jakarta-tomcat-4.1.12
>>>>>>>Using CATALINA_HOME:   /usr/local/jakarta-tomcat-4.1.12
>>>>>>>Using CATALINA_TMPDIR: /usr/local/jakarta-tomcat-4.1.12/temp
>>>>>>>Using JAVA_HOME:       /usr/local/jdk
>>>>>>>
>>>>>>>(after 2 or 3 minutes ...)
>>>>>>>
>>>>>>>Oct 7, 2002 2:22:05 AM org.apache.coyote.http11.Http11Protocol init
>>>>>>>INFO: Initializing Coyote HTTP/1.1 on port 8080
>>>>>>>Starting service Tomcat-Standalone
>>>>>>>Apache Tomcat/4.1.12
>>>>>>>Oct 7, 2002 2:22:12 AM org.apache.coyote.http11.Http11Protocol start
>>>>>>>INFO: Starting Coyote HTTP/1.1 on port 8080
>>>>>>>
>>>>>>>(after a few minutes more ...)
>>>>>>>
>>>>>>>===================================
>>>>>>>Ajp13Connector active threads=6
>>>>>>>java.lang.ThreadGroup[name=Ajp13Connector[8009],maxpri=10]
>>>>>>>  Thread[Ajp13Connector[8009],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][0],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][1],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][2],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][3],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][4],5,Ajp13Connector[8009]]
>>>>>>>===================================
>>>>>>>
>>>>>>>(And this is repeated every few minutes ...)
>>>>>>>
>>>>>>>===================================
>>>>>>>Ajp13Connector active threads=6
>>>>>>>java.lang.ThreadGroup[name=Ajp13Connector[8009],maxpri=10]
>>>>>>>  Thread[Ajp13Connector[8009],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][0],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][1],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][2],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][3],5,Ajp13Connector[8009]]
>>>>>>>  Thread[Ajp13Processor[8009][4],5,Ajp13Connector[8009]]
>>>>>>>===================================
>>>>>>>...
>>>>>>>
>>>>>>>If I execute netstat:
>>>>>>>
>>>>>>>bash-2.05$ netstat
>>>>>>>Active Internet connections (w/o servers)
>>>>>>>Proto Recv-Q Send-Q Local Address           Foreign Address
>>>>>>>State
>>>>>>>tcp        0      1 telemako:33000          telemako:8009
>>>>>>>SYN_SENT
>>>>>>>tcp        0      0 telemako:telnet         217-126-67-42.uc.:62839
>>>>>>>ESTABLISHED
>>>>>>>tcp        0      0 telemako:10000          217-126-67-42.uc.:61040
>>>>>>>ESTABLISHED
>>>>>>>tcp        0      0 telemako:telnet         217-126-67-42.uc.:60082
>>>>>>>ESTABLISHED
>>>>>>>tcp        0    133 telemako:telnet         217-126-67-42.uc.:60410
>>>>>>>ESTABLISHED
>>>>>>>Active UNIX domain sockets (w/o servers)
>>>>>>>Proto RefCnt Flags       Type       State         I-Node Path
>>>>>>>unix  8      [ ]         DGRAM                    1011462860
>>>>>>
>>>>>/dev/log
>>>>>
>>>>>
>>>>>
>>>>>>>unix  2      [ ]         DGRAM                    1553906393
>>>>>>>unix  2      [ ]         DGRAM                    1553556776
>>>>>>>unix  2      [ ]         DGRAM                    1553481826
>>>>>>>unix  2      [ ]         DGRAM                    1011466541
>>>>>>>unix  2      [ ]         DGRAM                    1011466462
>>>>>>>unix  2      [ ]         DGRAM                    1011463525
>>>>>>>bash-2.05$
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>Seems than the connector is listening on port 8009, but if I try to
>>>>>>>connect to a jsp page using apache (on port 80), after a lot of time
>>>>>>
>>>>>I
>>>>>
>>>>>
>>>>>
>>>>>>>receive an 'Internal Server Error', apache receives the request, but
>>>>>>>cannot connect with tomcat, tries it a few times, and finaly returns
>>>>>>
>>>>>the
>>>>>
>>>>>
>>>>>
>>>>>>>error.
>>>>>>>
>>>>>>>Am I using the correct connector? how can I know if it is running
>>>>>>
>>>>>ok?
>>>>>
>>>>>
>>>>>
>>>>>>>anybody knows what is the problem??
>>>>>>>
>>>>>>>Thank you all!!!!
>>>>>>>
>>>>>>>Bye!
>>>>>>>
>>>>>>>Marc
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>--
>>>>>>To unsubscribe, e-mail:
>>>>>
>>>>><mailto:[EMAIL PROTECTED]>
>>>>>
>>>>>>For additional commands, e-mail:
>>>>>
>>>>><mailto:[EMAIL PROTECTED]>
>>>>>
>>>>--
>>>>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>>>>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>>>
>>>
>>>
>>>--
>>>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>>>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>>>
>>--
>>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
> 
> 
> 
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
> 



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to