mirror of https://gitee.com/bigwinds/arangodb
added ulimit example
This commit is contained in:
parent
0b79c69884
commit
3487097180
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue