Heim  >  Artikel  >  Betrieb und Instandhaltung  >  So überprüfen Sie die Kompilierungsparameter von Nginx, Apache, MySQL, PHP unter Linux

So überprüfen Sie die Kompilierungsparameter von Nginx, Apache, MySQL, PHP unter Linux

WBOY
WBOYnach vorne
2023-05-18 14:16:061048Durchsuche

Überprüfen Sie schnell die Kompilierungsparameter der Serversoftware:
1. Nginx-Kompilierungsparameter:
your_nginx_dir/sbin/nginx -v
2. Apache-Kompilierungsparameter:
cat your_apache_dir/build/config.nice
3. PHP-Kompilierungsparameter :
your_php_dir/bin/php -i |grep configure
4

Kopieren Sie den Code. Der Code lautet wie folgt:

[root@www ~]# /usr/local/nginx/sbin/nginx -vnginx: Nginx-Version: nginx/1.0.8

nginx: erstellt von gcc 4.3 .2 (Debian 4.3 .2-1.1)

nginx: Argumente konfigurieren: –user=www-data –group=www-data –prefix=/usr/local/nginx –with-http_stub_status_module –with-http_gzip_static_module

Sehen Sie sich die Kompilierung an Parameter von Apache:

Kopieren Sie den Code. Der Code lautet wie folgt:

[root@www ~]# cat /usr/local/apache2/build/config.nice
# /bin/sh

#

# erstellt von 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“


Überprüfen Sie, um die Kompilierungsparameter von MySQL zu erhalten:


Kopieren Sie den Code. Der Code lautet wie folgt:

[root@www ~]# grep configure /usr/local/mysql/bin/ mysqlbug
# Dies wird durch configure

configure_line="./configure '–prefix=/usr/local/mysql4′ '–sysconfdir=/etc' '–enable-assembler' '–without-debug' '–with-client festgelegt -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'"


Siehe die Kompilierungsparameter von PHP:

Kopieren Sie den Code. Der Code lautet wie folgt:


[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- Kalender' '–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'

Das obige ist der detaillierte Inhalt vonSo überprüfen Sie die Kompilierungsparameter von Nginx, Apache, MySQL, PHP unter Linux. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:yisu.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen