有时候我们管理线上服务器时,想看看 nginx,apache,mysql,php 编译参数,可以用的方法有,
1.nginx编译参数
1
2
3
4
5
6
|
[root@web nginx-1.2.6] # /usr/local/nginx/sbin/nginx -V nginx version: nginx /1 .2.6 built by gcc 4.1.2 20080704 (Red Hat 4.1.2-48) TLS SNI support disabled configure arguments: --prefix= /usr/local/nginx --user=www --group=www --with-http_stub_status_module --with- file -aio --with-http_ssl_module [root@web nginx-1.2.6] # |
2.apache编译参数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
[root@web ~] # cat /usr/local/apache2/build/config.nice #! /bin/sh # # Created by configure "./configure"
"--prefix=/usr/local/apache2"
"--enable-modules=so"
"--enable-rewrite"
"--enable-deflate"
"--disable-FEATURE"
"--disable-access"
"--disable-auth"
"--disable-charset-lite"
"--disable-include"
"--disable-log-config"
"--disable-env"
"--disable-setenvif"
"--disable-status"
"--disable-autoindex"
"--disable-asis"
"--disable-cgid"
"--disable-cgi"
"--disable-negotiation"
"--disable-imap"
"--disable-actions"
"--disable-userdir"
"$@" [root@web ~] # |
4.php编译参数
1
2
3
|
root@web ~] # /usr/local/php5/bin/php -i | grep configure Configure Command => './configure' '--prefix=/usr/local/php5' '--with-apxs2=/usr/local/apache2/bin/apxs' '--with-mysql' '--with-pdo-mysql' '--without-pear' '--enable-sockets' '--enable-pcntl' '--enable-shared' '--enable-static' '--enable-shmop' '--enable-sysvshm' '--with-gd' '--with-png-dir' '--with-zlib' '--enable-gd-native-ttf' '--enable-zip' '--enable-mbstring' '--with-freetype-dir=/usr/include/freetype2/freetype/' '--with-openssl' '--with-libxml-dir' '--enable-calendar' '--with-curl' '--with-curlwrappers' '--enable-exif' '--with-jpeg-dir' '--with-xsl' '--enable-zip' '--enable-bcmath' '--with-mcrypt' [root@web ~] # |
5.mysql编译参数
(1).mysql rpm安装
1
|
cat "/usr/bin/mysqlbug" | grep configure |
(2).mysql源码包安装
1
2
3
4
|
[root@web ~] # cat /usr/local/mysql/bin/mysqlbug|grep configure # This is set by configure CONFIGURE_LINE= "./configure '--prefix=/usr/local/mysql' '--without-debug' '--with-extra-charsets=utf8' '--with-extra-charsets=complex' '--enable-assembler' '--without-innodb' '--with-pthread' '--enable-thread-safe-client' '--with-client-ldflags=-all-static' '--with-mysqld-ldflags=-all-static' '--enable-pdo'" [root@web ~] # |