Date format in the files written by syslogd


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Date format in the files written by syslogd
# 1  
Old 01-14-2013
Date format in the files written by syslogd

Hi,

Below is what i am seeing in /var/log/messages on ubuntu machine.

Code:
2013-01-14T18:29:39.319736+00:00 test01 ldap-mail[2395]:   test1
Jan 14 18:29:39 test01 ldap-mail[2395]:   test2
2013-01-14T18:29:39.320792+00:00 test01 ldap-mail[2395]: test3
Jan 14 18:29:39 test01 ldap-mail[2395]: test4

But on other ubuntu machine i am seeing the log as below
Code:
Jan 14 18:30:06 tets02 ldap-mail[19133]:  test01
Jan 14 18:30:06 tets02 ldap-mail[19133]:  test54
Jan 14 18:30:06 tets02 ldap-mail[19133]:  testing testing
Jan 14 18:30:07 tets02 ldap-mail[19133]:  test
Jan 14 18:30:07 tets02 ldap-mail[19133]:  test000


I there a way to correct the date format for test01 server similar to tets02 server?

Moderator's Comments:
Mod Comment Please use code tags next time for your code and data.

Last edited by radoulov; 01-14-2013 at 05:03 PM..
# 2  
Old 01-14-2013
Check this post.
# 3  
Old 01-14-2013
Quote:
Originally Posted by radoulov
Check this post.
Thank you for the reply. But in my case i am seeing the date/time format in two different versions as below where the first line is what i want to be consistent. Not sure why am i seeing the second line as different compared to the first one.

Code:
Jan 14 18:29:39 test01 ldap-mail[2395]:   test2
2013-01-14T18:29:39.320792+00:00 test01 ldap-mail[2395]: test3


Last edited by Scott; 01-15-2013 at 04:14 PM.. Reason: Code tags
# 4  
Old 01-14-2013
OK,
it appears that the process that writes the lines with the test1 pattern
is using a different date format.
Check the environment of those processes and look for different locale settings.
# 5  
Old 01-14-2013
I didnot understand as i know the what process is writing these logs into a file, but not sure what exactly needs to be updated/changed.

Can you please shed some light?
# 6  
Old 01-14-2013
If different users are used for starting those processes, check the initialization files in their home directories:
.profile, .bash_profile, for example. Look for variable names starting with LC_.
# 7  
Old 01-14-2013
Quote:
Originally Posted by radoulov
If different users are used for starting those processes, check the initialization files in their home directories:
.profile, .bash_profile, for example. Look for variable names starting with LC_.
I've checked in user's home directory and i dont see any LC_ refrences in those files and then i have checked the same on the working system still it is the same file without LC_ references.

SO am i missing anything here?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Date: invalid date trying to set Linux date in specific format

i try to set linux date & time in specific format but it keep giving me error Example : date "+%d-%m-%C%y %H:%M:%S" -d "19-01-2017 00:05:01" or date +"%d-%m-%C%y %H:%M:%S" -d "19-01-2017 00:05:01" keep giving me this error : date: invalid date ‘19-01-2017 00:05:01' Please use CODE tags... (7 Replies)
Discussion started by: umen
7 Replies

2. Shell Programming and Scripting

Change date format in am/pm in csv files using UNIX

Hi All, I'm new to forum good to hear all. I stuck in converting date format in csv file using unix csv file contains as below ,750,0000000000000000GCJR, ,06/22/2016 14:48:44 I want to convert into as below ,750,0000000000000000GCJR, ,06/22/2016 02:48:44 PM Please reply asap..... (22 Replies)
Discussion started by: Raghureds
22 Replies

3. Shell Programming and Scripting

To find files having filename containing specific date format

Hi, I have a requirement to create a shell script(tcsh) that finds all the files in a directory having the file name containing date format "YYYYMMDDHHMM" and extract the date time part ""YYYYMMDDHHMM" for further processing. Could you please have any idea on this. trades_201604040000.out... (6 Replies)
Discussion started by: gopal.biswal
6 Replies

4. UNIX for Dummies Questions & Answers

Rename all Files in a UNIX Directory from one date format to another date format

Hi Unix Gurus, I would like to rename several files in a Unix Directory . The filenames can have more than 1 underscore ( _ ) and the last underscore is always followed by a date in the format mmddyyyy. The Extension of the files can be .txt or .pdf or .xls etc and is case insensitive ie... (1 Reply)
Discussion started by: pchegoor
1 Replies

5. Shell Programming and Scripting

Monitor log entries in log files with no Date format? - Efficient logcheck?

is there a way to efficiently monitor logfiles that do not have a date or time format? i have several logs on several different servers that need to be monitored. but i realized writing a script for this would be very complex and time consuming giving the variety of things i need to check for i.e.... (2 Replies)
Discussion started by: SkySmart
2 Replies

6. Shell Programming and Scripting

Finding files before a certain date with predefined format

Guys, I have an input file such as below I would like to know how i would be able to find items created before 2011-10-01 Appreciate any expert advice. Thanks. (3 Replies)
Discussion started by: aismann
3 Replies

7. UNIX for Dummies Questions & Answers

Changing from Excel date format to MySQL date format

I have a list of dates in the following format: mm/dd/yyyy and want to change these to the MySQL standard format: yyyy-mm-dd. The dates in the original file may or may not be zero padded, so April is sometimes "04" and other times simply "4". This is what I use to change the format: sed -i '' -e... (2 Replies)
Discussion started by: figaro
2 Replies

8. Shell Programming and Scripting

convert date format to mysql date format in log file

I have a comma delimited log file which has the date as MM/DD/YY in the 2nd column, and HH:MM:SS in the 3rd column. I need to change the date format to YYYY-MM-DD and merge it with the the time HH:MM:SS. How will I got about this? Sample input 02/27/09,23:52:31 02/27/09,23:52:52... (3 Replies)
Discussion started by: hazno
3 Replies

9. Solaris

rotating the syslogd and messages files

Im about to install a sunfreeware program called logrotate which does exactly what it says on the tin....just a quick question ..if its going to rename messages to messages.0 etc do I need to issue a HUP to syslogd after doing this or will the new messages file get created automatically cheers (2 Replies)
Discussion started by: hcclnoodles
2 Replies

10. Shell Programming and Scripting

convert mmddyy date format to ccyyddd format??

hi, for reading a cobol indexed file i need to convert "mmddyy" date format to "ccyyddd" format. i checked the datecalc and other scripts but couldnt modify them to cater to my need:(... The datecalc gives an output which i believe is the total days till that date, but i want to convert it... (2 Replies)
Discussion started by: Bhups
2 Replies
Login or Register to Ask a Question