日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

Linux下查看nginx apache mysql php的编译参数

發布時間:2025/4/16 数据库 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Linux下查看nginx apache mysql php的编译参数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

由于工作的需要,有時候需要在一臺不是你參與編譯的環境調試環境,這就需要知道nginx,apache,mysql,php的編譯參數,以下小方法能快速讓你了解默認的服務器里的編譯參數
快速查看服務器軟件的編譯參數:
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/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的编译参数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。