首頁 > 運維 > Nginx > 主體

Linux下怎麼查看nginx,apache,mysql,php的編譯參數

WBOY
發布: 2023-05-18 14:16:06
轉載
1009 人瀏覽過

快速檢視伺服器軟體的編譯參數:
##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、mysql編譯參數:
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/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中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!