1
0
Fork 0

added ulimit example

This commit is contained in:
Frank Celler 2017-03-27 10:47:56 +02:00
parent 0b79c69884
commit 3487097180
1 changed files with 2 additions and 2 deletions

View File

@ -82,8 +82,8 @@ void FileDescriptorsFeature::start() {
if (rlim.rlim_cur < RECOMMENDED) { if (rlim.rlim_cur < RECOMMENDED) {
LOG_TOPIC(WARN, arangodb::Logger::SYSCALL) LOG_TOPIC(WARN, arangodb::Logger::SYSCALL)
<< "file-descriptors limit is too low, currently " << "file-descriptors limit is too low, currently "
<< StringifyLimitValue(rlim.rlim_cur) << ", raise to at least " << StringifyLimitValue(rlim.rlim_cur) << ", please raise to at least "
<< RECOMMENDED; << RECOMMENDED << " (e.g. ulimit -n " << RECOMMENDED << ")";
} }
#endif #endif
} }