Questions tagged [log-files]

A log file is a file, often in clear text, which is generated by a software process to record some specific details about the workings of this process.

A log file is a file which is generated by a software process to record some specific details (events) about the workings of this process. Most logfiles are plain, human-readable text files, some however are using a binary format to conserve space and need specific treatment for post-processing. (Example: Unix login history in utmp/wtmp format)

A log file can be categorized into several types:

  1. Access log which records information related to the usage of the service provided by this process.
  2. Error log which records error conditions.
  3. Info/Debug log which records more detailed information as compared with other logs.
  4. Transaction log to document a chain of events, this often is required to be immutable to avoid later tampering.
  5. redo logs, containing the complete information to replay a chain of actions, often used where incomplete data transactions would lead to inconsistent data, for example in file systems or databases.

The main two goals of creating and maintaining log files are:

  1. Finding and debugging problems.
  2. Gathering usage information.

Depending on the frequence of events and the level of detail, logfiles may be growing very quickly, and usually require a strategy for managing their growth.

Depending on special reqirements, log-files may go to specialized devices to meet criteria of speed or immutability.

1103 questions
-2
votes
1 answer

I have a IP address with some open services. How could I contact the owner?

After having serious problems (DNS incident) I found out an IP address of a machine. Is it in any way possible to contact the owner without knowing anything else like email, domain name or website? I scanned it via nmap and found some services…
brubaker
  • 11
  • 1
-2
votes
2 answers

Apache Error Log what does mean for "File doest not exist / undifined"

I can not understand following error from my VPS (LAMP) 175.101.XX.XX - - [27/Aug/2013:17:41:48 +0530] "GET /undefined HTTP/1.1" 404 694 "http://mydomain.com/memberpage.php" "Mozilla/5.0 (Windows NT 5.1; rv:23.0) Gecko/20100101 Firefox/23.0" I am…
-2
votes
1 answer

.log parser (MySQL / Apache)

Is there any tool (GUI) to parse MySQL och Apache log files? to a more readable format? Have Googled a lot, can't find anything to answer my need. Appreciate your help.
Johan Larsson
  • 117
  • 3
  • 13
-2
votes
1 answer

What software this log file comes from?

From what software comes this logfile? Please specify full name. Internal IP Threshold FlowsDiff 40 flows/s, Diff: 73 flows/s Sum 26.962 flows/300s (89 flows/s), 32.162.000 packets/300s (107.206 packets/s), 1,198 GByte/300s (32 MBit/s) External…
mickula
  • 342
  • 1
  • 2
  • 10
-2
votes
1 answer

How to know which file(file name) is transfered through FTP/SFTP

Think of a situation I transferred a file through FTP, in which log I can find the name of the file transferred. Kindly mention the location of the log file. Thanks In Advance.
-3
votes
1 answer

All log files seemingly deleted

I wanted to change to the log directory on ubuntu server, and check duplicity log, but I don't know what happened, it seems that all log files and sub-directories have gone missing! This is the command I used when I logged into the server: sudo su |…
Gitnik
  • 147
  • 2
  • 9
-3
votes
1 answer

Why same request for hundreds times in access log

I don't know what comes to this, and how to prevent it. Look at the time, it keep on with the same request for hundreds times. Not just those particular IPs but some others too. How do I prevent this. Thanks in advance. ... 113.172.1.79 - -…
ngungo
  • 95
-3
votes
1 answer

Keeping your server safe

I have a typical vps server with some custom sites on it running on port 80, a mail server, I don't have a DNS server and it is a default ubuntu 12.04. I don't have any admin panel, I am doing all the administration through command line. I am…
JohnDel
  • 67
  • 1
  • 2
  • 11
1 2 3
73
74