Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 PHP 作为脚本语言来创建 Web 应用程序。我的问题是如何在 linux 上看到错误日志?我忘记了命令,这有点像tail -f blabla
tail -f blabla
取决于您的发行版以及 Apache 的安装方式(我假设您使用的是 Apache)。您应该在 /var/log 或 /var/log/httpd 中找到相关的日志。找到正确的日志文件后,您可以使用tail -f <file>.
tail -f <file>
您还可以通过 php.ini 中的 display_errors 开关配置 PHP 以在脚本输出中显示错误。一定要php -i | grep php.ini弄清楚你的相关 php.ini 在哪里(通常是 /etc/php.ini)。
php -i | grep php.ini