RE: Facing problem in integration of PHP and tomcat

2008-02-07 Thread Goldstein, Barry A
I looked on google and it looks like these shared libraries mysql.so, mcrypt.so, and mbstring.so are php extensions for communicating with mysql, doing encryption and decryption, etc. You probably need to download these extensions and follow some kind of installation to use them. Thank you, B

RE: Facing problem in integration of PHP and tomcat

2008-02-05 Thread Goldstein, Barry A
In Linux you need to put the directory containing these shared libraries in your LD_LIBRARY_PATH environment variable and export the variable. These are the directories that the loader searches to dynamically load modules at runtime. Thank you, Barry -Original Message- From: puneetjain

Re: Does anyone have an approach to checking if Tomcat instance is UP?

2007-08-22 Thread Goldstein, Barry A
I have a script that checks to make sure that Tomcat is listening on the appropriate port. #!/bin/bash ... main() { ... chktomcat tomcat1 chktomcat tomcat2 ... } ... chktomcat() { netstat -a | grep $1 > /dev/null 2>&1 RC=$? if (( RC == 0 )