"아파치 오류 로그 error log"의 두 판 사이의 차이

잔글 (로봇: 자동으로 텍스트 교체 (-[root@jmnote +[root@zetawiki))
2번째 줄: 2번째 줄:
;/var/log/httpd/error_log
;/var/log/httpd/error_log


==예시==
==마지막 2줄 확인==
<source lang='cli'>
<source lang='cli'>
[root@zetawiki ~]# cat /var/log/httpd/error_log | tail -2
[root@zetawiki ~]# tail -2 /var/log/httpd/error_log
[Sun Feb 02 13:36:52 2014] [error] [client 246.80.135.79] File does not exist: /var/www/html/favicon.ico
[Sun Feb 02 13:36:52 2014] [error] [client 246.80.135.79] File does not exist: /var/www/html/favicon.ico
[Sun Feb 02 13:37:28 2014] [error] [client 135.79.246.80] File does not exist: /var/www/html/robots.txt
[Sun Feb 02 13:37:28 2014] [error] [client 135.79.246.80] File does not exist: /var/www/html/robots.txt
</source>
</source>
:→ 마지막 2줄 보여줌
==계속 보기==
<source lang='cli'>
[root@zetawiki ~]# tail -f /var/log/httpd/error_log
... (생략)
</source>
:→ 마지막 10줄 보여주고, 계속 대기하며 로그 발생시 표시함


==같이 보기==
==같이 보기==

2015년 7월 13일 (월) 17:58 판

아파치 오류 로그 error_log
/var/log/httpd/error_log

1 마지막 2줄 확인

[root@zetawiki ~]# tail -2 /var/log/httpd/error_log
[Sun Feb 02 13:36:52 2014] [error] [client 246.80.135.79] File does not exist: /var/www/html/favicon.ico
[Sun Feb 02 13:37:28 2014] [error] [client 135.79.246.80] File does not exist: /var/www/html/robots.txt
→ 마지막 2줄 보여줌

2 계속 보기

[root@zetawiki ~]# tail -f /var/log/httpd/error_log
... (생략)
→ 마지막 10줄 보여주고, 계속 대기하며 로그 발생시 표시함

3 같이 보기