Heim > Artikel > Betrieb und Instandhaltung > So überprüfen Sie die Kompilierungsparameter von Nginx, Apache, MySQL und PHP unter Linux
Überprüfen Sie schnell die Kompilierungsparameter der Serversoftware:
your_nginx_dir/sbin/nginx -v
cat your_apache_dir/build/config.nice
your_php_dir/bin/php -i |grep configure
cat your_mysql_dir/bin/mysqlbug |grep configureSehen Sie sich die Kompilierungsparameter von Apache an:
[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_moduleSehen Sie sich die Kompilierungsparameter von MySQL an:
[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" \Sehen Sie sich die Kompilierungsparameter an von PHP :
[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'"
Das obige ist der detaillierte Inhalt vonSo überprüfen Sie die Kompilierungsparameter von Nginx, Apache, MySQL und PHP unter Linux. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!