Hi Ravi,
Ravi Roy schrieb:
> I hope that I am writing to right list for APR related question,
> please forgive me in case my question is stupid, but I can not find
> the real answer anywhere after googling a lot.
> I have installed Apache Http Server 2.2.x on Centos 5.3 where APR is
> also installed (As far as I know APR is installed by default with
> Apache HTTP server).
>
> My question is how to check which version of APR is running on this
> server. Kindly mark me in email since I am not subscribed to this
> list.
try: httpd -V
this should give you something like that:
Server version: Apache/2.2.15 (Linux/SUSE)
Server built: Mar 19 2010 17:58:40
Server's Module Magic Number: 20051115:24
Server loaded: APR 1.3.8, APR-Util 1.3.9
Compiled using: APR 1.3.8, APR-Util 1.3.9
Architecture: 64-bit
Server MPM: Prefork
threaded: no
forked: yes (variable process count)
Server compiled with....
-D APACHE_MPM_DIR="server/mpm/prefork"
-D APR_HAS_SENDFILE
-D APR_HAS_MMAP
-D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
-D APR_USE_SYSVSEM_SERIALIZE
-D APR_USE_PTHREAD_SERIALIZE
-D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
-D APR_HAS_OTHER_CHILD
-D AP_HAVE_RELIABLE_PIPED_LOGS
-D DYNAMIC_MODULE_LIMIT=128
-D HTTPD_ROOT="/srv/www"
-D SUEXEC_BIN="/usr/sbin/suexec2"
-D DEFAULT_PIDLOG="/var/run/httpd2.pid"
-D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
-D DEFAULT_LOCKFILE="/var/run/accept.lock"
-D DEFAULT_ERRORLOG="/var/log/apache2/error_log"
-D AP_TYPES_CONFIG_FILE="/etc/apache2/mime.types"
-D SERVER_CONFIG_FILE="/etc/apache2/httpd.conf"
HTH, Gün.