We have a Windows box running IIS with a tomcat connector.. 
I have been tasked to move this to Solaris 10 platform..

My attempts
- found the binaries for mod_jk for Solaris apache2 (version 2.0.61)
http://www.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/solaris/jk-1.2.28/sparc/
--- native apache2 on Solaris U7 (05/09) is Server version: Apache/2.0.63
Using the binary from above give errors when running apache
*****
[Mon Jun 29 15:51:16 2009] [notice] Apache/2.0.63 (Unix) DAV/2 mod_jk/1.2.28
configured -- resuming normal operations
[Mon Jun 29 15:51:17 2009] [notice] child pid 8080 exit signal Segmentation
fault (11)
*****
(apache2) (additions)
httpd.conf 
-------------------------------------------
# Load mod_jk module
  # Update this path to match your modules location
LoadModule    jk_module  libexec/mod_jk.so
  # Declare the module for <IfModule directive> (remove this line on Apache
2.x)
###  AddModule     mod_jk.c
  # Where to find workers.properties
  # Update this path to match your conf directory location (put
workers.properties next to httpd.conf)
JkWorkersFile /etc/apache2/workers.properties
  # Where to put jk shared memory
  # Update this path to match your local state directory or logs directory
JkShmFile     /var/apache2/logs/mod_jk.shm
  # Where to put jk logs
  # Update this path to match your logs directory location (put mod_jk.log
next to access_log)
JkLogFile    /var/apache2/logs/mod_jk.log
  # Set the jk log level [debug/error/info]
JkLogLevel    info
  # Send everything for context /examples to worker named worker1 (ajp13)
JkMount  /Example/* worker1
-------------------------------------------
**
worker.properties from Windows box
-------------------------------------------
# Begins worker.properties here
# Define path of .properties files and jdk
# workers.tomcat_home=E:\IISSettings
# ps=\
# Define workers using ajp13
worker.list=worker1
# Set properties for worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=<server name here>
worker.worker1.port=8309
-------------------------------------------

Tried compiling from source but to no avail..
**** 
running ./configure --with-apxs=/usr/apache2/bin/apxs
Error
- gives error regarding /opt/SUNWspro/bin/cc missing
Symbolic link to /usr/sfw/bin/gcc does not work 

******

thx for any help
ct



-- 
View this message in context: 
http://www.nabble.com/Solaris-10-mod_jk-problems...-tp24375362p24375362.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to