当前位置:首页 > linux教程 > 列表

linux下查看nginx、apache、mysql、php的编译参数

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-22 08:14:06 浏览: 评论:0 

下文我们一起来看一个linux下查看nginx、apache、mysql、php的编译参数例子,希望此例子对各位有帮助.

查看nginx、apache、mysql、php参数我们可以用到.

  1. /App/nginx/sbin/nginx -V  查看nginx参数 
  2.  
  3. # cat config.nice 查看apache参数 
  4.  
  5. #cat “/usr/local/mysql/bin/mysqlbug”|grep configure  查看mysql参数 
  6.  
  7. /usr/local/php/bin/php -i |grep configure 查看php参数 

1、查看nginx参数

  1. [root@361way ~]# /App/nginx/sbin/nginx -V 
  2. nginx: nginx version: nginx/1.2.6 
  3. nginx: TLS SNI support disabled --phpfensi.com 
  4. nginx: configure arguments: --prefix=/App/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module 

2、查看apache参数

  1. [root@361way build]# cat config.nice 
  2. #! /bin/sh 
  3. # Created by configure 
  4. "./configure" 
  5. "--prefix=/usr/local/httpd" 
  6. "--with-apr=/usr/local/apr" 
  7. "--with-apr-util=/usr/local/apr-util" 
  8. "--with-pcre" 
  9. "--with-mpm=event" 
  10. "--enable-rewrite" 
  11. "--enable-proxy" 
  12. "--with-z" 
  13. "--enable-so" 
  14. "$@" 

3、查看mysql参数

  1. [root@361way build]#cat “/usr/local/mysql/bin/mysqlbug”|grep configure 
  2. # This is set by configure 
  3. 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参数

  1. /usr/local/php/bin/php -i |grep configure 
  2. 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’

Tags: nginx编译参数 apache编译参数

分享到: