빠르게 서버 소프트웨어의 컴파일 매개변수를 확인하세요:
1. nginx 컴파일 매개변수:
your_nginx_dir/sbin/nginx -v
2.apache 컴파일 매개변수:
cat your_apache_dir/build/config.nice
3. php 컴파일 매개변수:
your_php_dir/bin/php -i |grep configure
4.
cat your_mysql_dir/bin/mysqlbug |grep configure
다음은 완전한 실제 예입니다.
nginx의 컴파일 매개변수 보기:
[root@www ~]# /usr/local/nginx/sbin/nginx -v nginx: nginx version: nginx/1.0.8 nginx: 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
apache의 컴파일 매개변수 보기:
[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" \
mysql의 컴파일 매개변수 보기:
[root@www ~]# grep configure /usr/local/mysql/bin/mysqlbug # this is set by configure configure_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'"
컴파일 매개변수 보기 PHP:
[root@www ~]# /usr/local/php5/bin/php -i |grep configure configure 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'
위 내용은 Linux에서 nginx, apache, mysql 및 php의 컴파일 매개변수를 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!