如何查看Nginx、Mysql、PHP编译参数

查看Nginx编译参数

1
/usr/local/webserver/nginx/sbin/nginx -V

查看Mysql编译参数


1
2
VISUAL=cat;export VISUAL
/usr/local/webserver/mysql/bin/mysqlbug|grep configure


查看PHP编译参数

方法一


1
/usr/local/webserver/php/bin/php -i|grep configure

方法二

1
/usr/local/webserver/php/bin/php-config|grep configure

相关文章:

  • 2021-10-18
  • 2022-12-23
  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-11-07
猜你喜欢
  • 2021-08-20
  • 2022-02-12
  • 2021-09-16
  • 2021-12-05
  • 2021-10-22
  • 2021-10-08
  • 2021-11-22
相关资源
相似解决方案