Does SOLARIS have similar file to Linux's /etc/security/limits.conf?
Posted
by
SQL Warrior
on Server Fault
See other posts from Server Fault
or by SQL Warrior
Published on 2011-02-10T17:54:07Z
Indexed on
2011/02/10
23:27 UTC
Read the original article
Hit count: 759
solaris
I'm doing compliance check on SOLARIS 10 OS. I need to verify the following parameter settings:
core file size (blocks, -c) unlimited
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
open files (-n) 65536
stack size (kbytes, -s) unlimited
cpu time (seconds, -t) unlimited
virtual memory (kbytes, -v) unlimited
Sure I could use ulimit -cH to get display above. But I also need to find where those settings are. I'm from Linux, in Linux we have /etc/security/limts.conf file to hold alike information. Do we have such file in Solaris?
TIA!
© Server Fault or respective owner