Copy open active log


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Copy open active log
# 1  
Old 03-10-2017
Copy open active log

Hi,
I try to copy the nohup.out to new file using cp command on solaris 10
However, the new file is very large size compare to nohup.out

The file is in English format text.

Any solution for copying active/open log file without problem with the size.

ex:
Code:
/dir > du -sh nohup.out
636K   nohup.out
/dir > file nohup.out
nohup.out:      English text
/dir > cp nohup.out nohup1.out
/dir > du -sh nohup*
636K   nohup.out
1.7G   nohup1.out

Thanks,
Xitrum


Moderator's Comments:
Mod Comment Please use CODE tags as required by forum rules!

Last edited by RudiC; 03-10-2017 at 03:53 PM.. Reason: AddedCODE tags.
# 2  
Old 03-10-2017
It must be a sparse file, to blow up like that when copied. Compare ls -lh nohup.out with du -hs nohup.out, if they differ significantly, nohup.out is sparse.

As for why nohup.out is sparse, have you been truncating the file while its still live? This will cause large amounts of empty space at the beginning of the file since the process will continue writing at the "end". They won't be stored on disk, just assumed to be there, until you copy it.

That problem will need to be taken care of before you can copy the file.
# 3  
Old 03-10-2017
sparse file, mayhap? Does your cp have the --sparse=WHEN option?
Are the contents of the two files identical?

Last edited by RudiC; 03-10-2017 at 05:22 PM.. Reason: typo
# 4  
Old 03-10-2017
Thank you very much for a quick respond.
This is new to me. They are different when using ls -lh and du -sh.
====================
/dir > ls -lh nohup.out
-rw------- 1 a b 1.7G Mar 10 15:02 nohup.out
/dir > du -sh nohup.out
3.9M nohup.out
/dir >
==================
How can I solve this problem ?
thank you vey much.
# 5  
Old 03-10-2017
Whatever is writing these nohup.out files will need modification, to prevent it writing sparse files. What you're doing right now isn't working, it's generating these weird sparse files instead of starting over at position zero.

What's writing these logfiles? Can you show us the code? You may be able to convince it to move its own logfiles on command.
# 6  
Old 03-10-2017
it is an out put of the weblogic.

nohup ./startweblogic.sh &

Code:
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-1] (?:?) - no chg in JobTriggerTime; set to null
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-1] (?:?) - JobSchedulerDAO.hasJobTriggerTimeChanged() called ...
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-1] (?:?) - getScheduledJobs sql == select job_trigger_time from BATCH_JOB_SCHEDULE where job_id = 30
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-1] (?:?) - newJobTriggerTime == 07:00:00
jobID == 30
old time == 07:00:00
new time == 07:00:00
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-1] (?:?) - no chg in JobTriggerTime; set to null
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-3] (?:?) - checkJobStartFlag called ...
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-3] (?:?) - checkJobStartFlag query == select job_start_flag from batch_job_schedule where job_id = 24
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-10] (?:?) - checkJobStartFlag called ...
<Mar 10, 2017 01:24:01>  WARN [DefaultQuartzScheduler_Worker-10] (?:?) - checkJobStartFlag query == select job_start_flag from batch_job_schedule where job_id = 31
####### Unlocking the items if there are any ######
####### End of Unlocking the items if there are any ######
<Mar 10, 2017 01:24:04>  WARN [DefaultQuartzScheduler_Worker-4] (?:?) - JobInvoker.runPostLoadFromColl(): POSTLOAD_FROM_COLLECTION end .. 
PollerJob is executing. Time:3/10/17 1:26 PM
PollerJob triggerTimesMap:{19=15:00:00, 21=05:45:00, 20=15:00:00, 25=16:00:00, 26=05:45:00, 29=06:00:00, 30=07:00:00}
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - JobSchedulerDAO.hasJobTriggerTimeChanged() called ...
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - getScheduledJobs sql == select job_trigger_time from BATCH_JOB_SCHEDULE where job_id = 19
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - newJobTriggerTime == 15:00:00
jobID == 19
old time == 15:00:00
new time == 15:00:00
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - no chg in JobTriggerTime; set to null
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - JobSchedulerDAO.hasJobTriggerTimeChanged() called ...
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - getScheduledJobs sql == select job_trigger_time from BATCH_JOB_SCHEDULE where job_id = 21
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - newJobTriggerTime == 05:45:00
jobID == 21
old time == 05:45:00
new time == 05:45:00
<Mar 10, 2017 01:26:01>  WARN [DefaultQuartzScheduler_Worker-6] (?:?) - no chg in JobTriggerTime; set to null


Last edited by Corona688; 03-10-2017 at 04:34 PM..
# 7  
Old 03-10-2017
Use code tags for code, please. [ code ] stuff [ /code ] without the extra spaces in the tags.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search the string in the active log and send mail

Hello, I wanted to search specific string in the acitve log file and send an email if the search string found in the log. Log file is written by application all the time. So, script has to search if any new log entry has the specific string for example " sample exception" and send an email. (1 Reply)
Discussion started by: balareddy
1 Replies

2. Shell Programming and Scripting

How do I calculate total number of active and non active hosts?

#!/bin/bash for digit in $(seq 1 10) do if ping -c1 -w2 192.168.1.$digit &> /dev/null then echo "192.168.1.$digit is UP" else echo "192.168.1.$digit is DOWN" fi done (3 Replies)
Discussion started by: fusetrips
3 Replies

3. UNIX for Dummies Questions & Answers

Active sessions open or long time

What kind of problems can be faced if any session which connects to unix server is open for longer time? How to find out from how much time that session is idle? :) (2 Replies)
Discussion started by: anandgodse
2 Replies

4. Shell Programming and Scripting

Loop script required within an active log file

I need some help please... This is the scenario what I am sitting with. 1 - I am kicking of a batch script. 2 - This batch script is writing to an active log file which is also use by other batch scripts. 3 - I need to monitor this active log file and grep for the script name as well as the... (3 Replies)
Discussion started by: Henk Trumpie
3 Replies

5. Solaris

Link based Active Active IPMP

Hi, I need to configure 4 ip address (same subnet and mask) in one ipmp group (two interfaces) in an active active formation (link based). Can some one provide the steps or a tutorial link. Thanks (2 Replies)
Discussion started by: Mack1982
2 Replies

6. UNIX for Advanced & Expert Users

Rollover/compress log from ACTIVE process

I have some Solaris processes that run weeks at a time that create rather large log files that I would like to archive/compress daily. Instead of stopping the process, what can be done so that the log file is backed up and shrunk, but the process can still log to the open file handle without major... (7 Replies)
Discussion started by: ckmehta
7 Replies

7. AIX

Question about HACMP for active-active mode

Hi all, I am new to HACMP. So sorry for the newie question. But I did search the forum and it seems that no one asks this before. So if a 2-node cluster runs in active-active mode (and the same application), what is the benefit of using HACMP ? If it runs in active-stanby, it is easy to... (9 Replies)
Discussion started by: qiulang
9 Replies

8. Shell Programming and Scripting

grep active log file

Hi Gurus, I am facing a problem with grepping a set of data in active log file which are the info not in uniform, below is the sample data information. I am trying to grep value. Connect_PM Connect to APPS gateway failed ERROR connection to host anyserver.com, service 6600 timed out ... (4 Replies)
Discussion started by: anakiar
4 Replies
Login or Register to Ask a Question