Linux下查看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

猜你喜欢

转载自blog.csdn.net/shardy0/article/details/87865991