cancel
Showing results for 
Search instead for 
Did you mean: 

sapmnt/SID full?????

Former Member
0 Kudos

Well in the global directory sapmnt/EWP the status is

du -sk *|sort -nr|head -10

1606304 270JOBLG

12072 000JOBLG

3712 SSD

992 SLOGJO

888 WF_LOG_000000106068_270

888 WF_LOG_000000101088_270

880 WF_LOG_000000097069_270

864 WF_LOG_000000092064_270

856 WF_LOG_000000079062_270

856 WF_LOG_000000075045_270

Well i found this command to delete old job logs on Unix

find /sapmnt/EWP/global/270JOBLG -mtime +10 -type f -exec rm -f {} \;

But there is no effect

the client 270 job log is increasing

Also am not able to login into SAP system hence cant use RSTBTCDEL

Any body knows some different command to delete job log

Help appreciated

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I deleted the job logs older than 5 days

Former Member
0 Kudos

1) go to /sapmnt/<SAPSID>/global/270JOBLG, list the log files according to size & delete them

,

2) look for any core files generated in the file system & delete them

find /sapmnt -type f -name core

regards