Step 1: Identify Processes and Open File Usage

ARTIFACTORY: Resolving Open File Limit Issues for Artifactory on Linux Servers

AuthorFullName__c
Muniraju M K
articleNumber
000006147
ft:sourceType
Salesforce
FirstPublishedDate
2024-07-14T11:29:55Z
lastModifiedDate
2024-07-14
VersionNumber
1
Run the following command to identify the top 10 processes using the most open files:
lsof | awk '{ print $1 " " $2; }' | sort -rn | uniq -c | sort -rn | head -10

Understanding Limits: There are two types of limits for open files:
  • Soft limit: Current limit that can be adjusted.
  • Hard limit: Maximum number of open files allowed.