Heim > Artikel > Betrieb und Instandhaltung > So überprüfen Sie die Kompilierungsparameter von Nginx, Apache, MySQL, PHP unter Linux
Ü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
[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
Kopieren Sie den Code. Der Code lautet wie folgt:
[root@www ~]# cat /usr/local/apache2/build/config.nice
# /bin/sh
# erstellt von configure
"./configure"
"–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
Siehe die Kompilierungsparameter von 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- 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!