Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. % httpd -V
  2. Server version: Apache/2.2.17 (Unix)
  3. Server built: Dec 17 2010 11:58:24
  4. Server's Module Magic Number: 20051115:25
  5. Server loaded: APR 1.3.12, APR-Util 1.3.9
  6. Compiled using: APR 1.3.12, APR-Util 1.3.9
  7. Architecture: 32-bit
  8. Server MPM: Prefork
  9. threaded: no
  10. forked: yes (variable process count)
  11. Server compiled with....
  12. -D APACHE_MPM_DIR="server/mpm/prefork"
  13. -D APR_HAS_SENDFILE
  14. -D APR_HAS_MMAP
  15. -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
  16. -D APR_USE_SYSVSEM_SERIALIZE
  17. -D APR_USE_PTHREAD_SERIALIZE
  18. -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
  19. -D APR_HAS_OTHER_CHILD
  20. -D AP_HAVE_RELIABLE_PIPED_LOGS
  21. -D DYNAMIC_MODULE_LIMIT=128
  22. -D HTTPD_ROOT="/etc/httpd"
  23. -D SUEXEC_BIN="/usr/sbin/suexec"
  24. -D DEFAULT_PIDLOG="logs/httpd.pid"
  25. -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
  26. -D DEFAULT_LOCKFILE="logs/accept.lock"
  27. -D DEFAULT_ERRORLOG="logs/error_log"
  28. -D AP_TYPES_CONFIG_FILE="conf/mime.types"
  29. -D SERVER_CONFIG_FILE="conf/httpd.conf"
  30.  
  31. LoadModule auth_basic_module modules/mod_auth_basic.so
  32. LoadModule auth_digest_module modules/mod_auth_digest.so
  33. LoadModule authn_file_module modules/mod_authn_file.so
  34.  
  35. /etc/httpd/modules/mod_auth_basic.so
  36.  
  37. % ls /usr/lib/httpd/modules/
  38. libphp5.so mod_authnz_ldap.so mod_dav_fs.so mod_headers.so mod_perl.so mod_speling.so
  39.  
  40. % ls -l /etc/httpd/
  41. total 12
  42. drwxr-xr-x 2 root root 4096 Apr 26 2011 conf
  43. drwxr-xr-x 3 root root 4096 Apr 26 2011 conf.d
  44. -rw-r--r-- 1 root root 18 Feb 24 2009 htpasswd
  45. lrwxrwxrwx 1 root root 19 Apr 26 2011 logs -> ../../var/log/httpd
  46. lrwxrwxrwx 1 root root 27 Apr 26 2011 modules -> ../../usr/lib/httpd/modules
  47. lrwxrwxrwx 1 root root 13 Apr 26 2011 run -> ../../var/run
  48.  
  49. /usr/libexec/apache2/libphp5.so
  50.  
  51. <Install Dir of PHP>/bin/php -i | grep apxs
  52.  
  53. APACHE_HOME/bin/apxs
  54.  
  55. #php -i | grep apxs
  56.  
  57. Failed loading opcache.so: opcache.so: cannot open shared object file: No such file or directory PHP Warning: PHP Startup: Unable to load dynamic library '<PHP_HOME>/lib/php/extensions/debug-non-zts-20121212/memcached.so' - <PHP_HOME>/lib/php/extensions/debug-non-zts-20121212/memcached.so: undefined symbol: OnUpdateLongGEZero in Unknown on line 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement