如何查看已经安装的nginxapachemysql和php的编译参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查看已经安装的nginxapachemysql和php的编译参数相关的知识,希望对你有一定的参考价值。
在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
或者写个php文件输出phpinfo(),在configure栏也有
4、mysql编译参数:
cat your_mysql_dir/bin/mysqlbug |grep configure
以上是关于如何查看已经安装的nginxapachemysql和php的编译参数的主要内容,如果未能解决你的问题,请参考以下文章
windows下如何安装pip以及如何查看pip是否已经安装成功?