码迷,mamicode.com
首页 > 其他好文 > 详细

查看软件的编译参数

时间:2015-05-17 00:47:49      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

有时候我们管理线上服务器时,想看看 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 ~]#

 

查看软件的编译参数

标签:

原文地址:http://www.cnblogs.com/x113/p/4332115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!