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
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
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 )