linux下查看服务器软件的编译参数

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
原文地址:https://www.cnblogs.com/zhuiluoyu/p/4653837.html