萬盛學電腦網

 萬盛學電腦網 >> 服務器教程 >> linux下查看nginx、apache、mysql、php的編譯參數

linux下查看nginx、apache、mysql、php的編譯參數

  下文我們一起來看一個linux下查看nginx、apache、mysql、php的編譯參數例子,希望此例子對各位有幫助。

  查看nginx、apache、mysql、php參數我們可以用到

  /App/nginx/sbin/nginx -V 查看nginx參數

  # cat config.nice 查看apache參數

  #cat “/usr/local/mysql/bin/mysqlbug”|grep configure 查看mysql參數

  /usr/local/php/bin/php -i |grep configure 查看php參數

  1、查看nginx參數

  [root@361way ~]# /App/nginx/sbin/nginx -V

  nginx: nginx version: nginx/1.2.6

  nginx: TLS SNI support disabled

  nginx: configure arguments: --prefix=/App/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module

  2、查看apache參數

  [root@361way build]# cat config.nice

  #! /bin/sh

  #

  # Created by configure

  "./configure"

  "--prefix=/usr/local/httpd"

  "--with-apr=/usr/local/apr"

  "--with-apr-util=/usr/local/apr-util"

  "--with-pcre"

  "--with-mpm=event"

  "--enable-rewrite"

  "--enable-proxy"

  "--with-z"

  "--enable-so"

  "$@"

  3、 查看mysql參數

  [root@361way build]#cat “/usr/local/mysql/bin/mysqlbug”|grep configure

  # This is set by configure

  CONFIGURE_LINE=”./configure ‘--prefix=/usr/local/mysql’ ‘--localstatedir=/var/lib/mysql’ ‘--with-comment=Source’ ‘--with-server-suffix=-H863′ ‘--with-mysqld-user=mysql’ ‘--without-debug’ ‘--with-big-tables’ ‘--with-charset=gbk’ ‘--with-collation=gbk_chinese_ci’ ‘--with-extra-charsets=all’ ‘--with-pthread’ ‘--enable-static’ ‘--enable-thread-safe-client’ ‘--with-client-ldflags=-all-static’ ‘--with-mysqld-ldflags=-all-static’ ‘--enable-assembler’ ‘--without-isam’ ‘--without-innodb’ ‘--without-ndb-debug’”

  4、查看php參數

  /usr/local/php/bin/php -i |grep configure

  Configure Command => ‘./configure’ ‘--prefix=/usr/local/php’ ‘--with-apxs2=/usr/local/apache2/bin/apxs’ ‘--with-config-file-path=/usr/local/php/etc’ ‘--with-mysql=/usr/local/mysql’ ‘--with-libxml-dir=/usr/local/libxml2/bin’ ‘--with-gd=/usr/local/gd2′ ‘--with-jpeg-dir’ ‘--with-png-dir’ ‘--with-bz2′ ‘--with-xmlrpc’ ‘--with-freetype-dir’ ‘--with-zlib-dir’

copyright © 萬盛學電腦網 all rights reserved