我有以下基本代码:
<?php
//http://localhost/error_log.php
echo "write to the error_log";
error_log("error_log entry");
//error_log("error_log entry",0);
?>
当我导航到这个页面时,我在浏览器中看到了write to the error_log。它甚至会出现在access_log /var/log/apache2/access.log中。
[my ip here] -
我在我的亚马逊ec2 linux机器上运行php 5.5.20。我在终端中做了以下工作
[root]# cat /etc/php.ini | grep error_log
; server-specific log, STDERR, or a location specified by the error_log
; Set maximum length of log_errors. In error_log information about the source is
;error_log = php_errors.log
;error_log = syslog
error_log =
我有一台佳能iR C5030打印机,我以前在Linux上遇到过麻烦,但现在我有了一个新的问题。
佳能为这台打印机开发了Linux驱动程序,它们在过去版本的Ubuntu中工作得很好。现在,每当我尝试在14.04版打印时,我都会得到“过滤器失败”
E [09/Aug/2014:12:32:10 -0400] [Job 32] Job stopped due to filter errors;
please consult the error_log file for details.
这是打印尝试的全部调试。
我在我的ubuntu12.04中安装了xampp。但阿帕奇没有逃跑。就像这样:
$ sudo lampp status
Version: XAMPP for Linux 1.5.5a
Apache is not running.
MySQL is running.
ProFTPD is running.
然后在我打字之后:
tail -2 /opt/lampp/logs/error_log
它向我展示了一些错误:
[Mon Mar 09 21:32:59 2015] [warn] RSA server certificate is a CA certificate (BasicConstrai
错误显示
Starting XAMPP for Linux 8.0.8-0...
XAMPP: Starting Apache.../opt/lampp/share/xampp/xampplib: line 22: netstat: command not found
/opt/lampp/share/xampp/xampplib: line 22: netstat: command not found
fail.
XAMPP: Starting diagnose...
XAMPP: Sorry, I've no idea what's going wrong.
XAM
运行在VPS上的基于Apache的应用程序最近停止了为SSL事务服务。
我在error_log中遇到了如下错误:
[Tue Aug 24 12:39:00 2010] [warn] Found CRL is expired - revoking all certificates until you get updated CRL
[Tue Aug 24 12:39:00 2010] [error] Certificate Verification: Error (12): CRL has expired
有没有人有这个问题,并且知道更新CRLs的方法?
系统生命周期:Ubuntu8Linux2
我正在进入我的服务器,进入正确的目录(如su)。
cd /var/log/httpd
当我ls,我得到:
access_log error_log
然而,当我尝试cd /error_log或cd error_log时,我得到了bash: cd: /error_log: No such file or directory或bash: cd: error_log: Not a directory。
我只想查看最后50个左右的错误(来自PHP文件),但不确定如何实现。我知道我需要类似tail -n 300 error_log-20130602 | more的东西,但我不知道日志文件名。