문제

I need to check my apache error log, but the file contains 14GB of data. Downloading will takes ages. Is there any way how I can see what's in the file without downloading?

도움이 되었습니까?

해결책 2

Do you got a SSH access to your server ? In this case this is easy, use a SSH client like putty and read file directly.

If you only got a FTP access, you can try to use Byte range as defined here : http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35

Of course only if your server supports it.

다른 팁

If you have SSH enabled on the server, just remotely login and either tail or grep the log files.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top