cancel
Showing results for 
Search instead for 
Did you mean: 

/sapmnt file system full

Former Member
0 Kudos

Hi,

I'm working on a ECC 6 system and the file system /sapmnt is 95% full.

I have removed the core file from the directory and still the space has not increased.

Can someone suggest some solutions?

Thanks.

Deepak

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member189546
Active Contributor
0 Kudos

Hello,

Please see these two notes

573800 Reasons for trace files increasing

16513 File system is full - what do I do

Check if you have large trace files.

You can set a limit to the trace files

Set the "rdisp/TRACE_LOGGING = on, 10 m" profile parameter

- (10 m corresponds to a size of 10 megabytes)

regards,

John Feely

Former Member
0 Kudos

Hi Deepak,

Try to identify the largest files using the following commands.

Disk Usage Descending

du -hs * | sort -n

Total size of the current directory including all the subdirectories

du -ch | grep total

Find the files which are more than 2 days old and more than 100M in Size

find /sapmnt/SID -mtime +2 -size +1000000k

Find out top 10 largest file/directories is taking up the most space in a /usr/sap/BR1 directory/file system

du -a /sapmnt/SID| sort -n -r | head -n 10

du -hs ./ | sort -n -r | head -n 10

Sort the list of files by filesize

find /sapmnt -size +15M -printf "%s - %p\n" | sort -n

Br,

Venky