Summary
SiteScope restart by itself
Question
SiteScope on linux version 11.32 restarts by itself.
Answer
In case the linux server is handling a lot of processes, and it is reaching the process limit, we can edit the following file and increase the "soft nofile" and the "hard nofile" according with the following guide: http://ss64.com/bash/limits.conf.html
cat /etc/security/limits.conf
…….
* soft core 0
* hard rss 10000
@student hard nproc 20
@faculty soft nproc 20
@faculty hard nproc 50
ftp hard nproc 0
@student - maxlogins 4
root soft nofile 16384
root hard nofile 16384
End of file