如何制作显示 MySQL、PHP、phpmyadmin、Apache、Python 等详细信息的 php 文件?

如何制作显示 MySQL、PHP、phpmyadmin、Apache、Python 等详细信息的 php 文件?

如何制作一个 php 文件来显示 PHP、Apahce、MySQL、phpMyAdmin、Python 和 Ubuntu 系统使用情况和信息的详细信息。

答案1

PHP 查看http://php.net/phpinfo例如。基本上把...

<?php

// Show all information, defaults to INFO_ALL
phpinfo();

?>

在文档目录内的文件中将其命名为 phpinfo.html,您可以在 apache 运行时从浏览器访问该文件。

阿帕奇

我建议使用 apache 模块mod_status

Apache Web 服务器还内置了 mod_status,可以从 Web 浏览器获取服务器状态。使用此模块,您可以轻松了解服务器的运行情况。所有报告均以 html 格式生成。您可以轻松找到以下类型的信息:

Total number of worker serving requests
Total number of of idle worker
Find the status of each worker, the number of requests that worker has performed and the total number of bytes served by the worker
Total number byte count served
Other information such as CPU usage, number of requests per second,current hosts and requests being processed etc.

因此可以通过设置 apache 来完成此操作。例子

Mysql 有一个命令mysqladmin -u root -p status可以显示各种设置,但没有模块可以在浏览器中显示这些设置。Python 也是如此。可能出于安全考虑,这个功能不可用。

如果您需要更多的东西,您需要详细说明“等等”。

相关内容