Linux下如何查看nginx、apache、mysql和php的编译参数
时间:2023-05-15 06:38
快速查看服务器软件的编译参数: 2、apache编译参数: 3、php编译参数: 4、mysql编译参数: 以下是完整的实操例子: 查看获取nginx的编译参数: 查看获取apache的编译参数: 查看获取mysql的编译参数: 参看获取php的编译参数: 以上就是Linux下如何查看nginx、apache、mysql和php的编译参数的详细内容,更多请关注Gxl网其它相关文章!
1、nginx编译参数:your_nginx_dir/sbin/nginx -v
cat your_apache_dir/build/config.nice
your_php_dir/bin/php -i |grep configure
cat your_mysql_dir/bin/mysqlbug |grep configure
[root@www ~]# /usr/local/nginx/sbin/nginx -vnginx: nginx version: nginx/1.0.8nginx: built by gcc 4.3.2 (debian 4.3.2-1.1)nginx: configure arguments: –user=www-data –group=www-data –prefix=/usr/local/nginx –with-http_stub_status_module –with-http_gzip_static_module
[root@www ~]# cat /usr/local/apache2/build/config.nice#! /bin/sh## created by configure"./configure" "–prefix=/usr/local/apache2″ "–enable-so" "–enable-modules=all" "–enable-mods-shared=all" "–enable-layout=apache" "–enable-ssl=static" "–with-ssl=/usr/local/openssl" "–enable-rewrite" "–enable-suexec" "–with-suexec-logfile=/www/logs/suexec.log" "–with-suexec-uidmin=500″ "–with-suexec-gidmin=100″ "–with-suexec-caller=nobody" "–with-suexec-docroot=/www"
[root@www ~]# grep configure /usr/local/mysql/bin/mysqlbug# this is set by configureconfigure_line="./configure '–prefix=/usr/local/mysql4′ '–sysconfdir=/etc' '–enable-assembler' '–without-debug' '–with-client-ldflags=-all-static' '–with-mysqld-ldflags=-all-static' '–localstatedir=/www/mysql' '–with-big-tables' '–with-low-memory' '–with-extra-charsets=all' '–enable-thread-safe-client' '–with-pthread' '–with-unix-socket-path=/tmp/mysql.sock'"
[root@www ~]# /usr/local/php5/bin/php -i |grep configureconfigure command => './configure' '–prefix=/usr/local/php5′ '–enable-exif' '–enable-mbstring' '–with-iconv' '–with-curl=/usr' '–with-gdbm' '–with-gettext' '–enable-calendar' '–enable-magic-quotes' '–enable-wddx' '–enable-ftp' '–enable-inline-optimization' '–with-gd=/usr/local' '–with-zlib' '–enable-gd-native-ttf' '–with-t1lib=/usr/local' '–with-zlib-dir=/usr' '–with-ttf' '–with-freetype-dir=/usr' '–with-gd' '–with-png-dir=/usr' '–with-jpeg-dir=/usr' '–with-mysql=/usr/local/mysql4′ '–enable-force-cgi-redirect' '–with-apxs2=/usr/local/apache2/bin/apxs' '–with-pdo-mysql=/usr/local/mysql4′ '–enable-sockets' '–with-openssl=/usr/local/openssl'