Operating System - HP-UX
1753974 Members
6999 Online
108811 Solutions
New Discussion юеВ

Re: How to configure ulimit for dba user?

 
SOLVED
Go to solution
sowmyak
Occasional Contributor

How to configure ulimit for dba user?

I create a user account "sedba" in our HP-UX.
How do I configure ulimits to this account with following parameters:
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
pending signals (-i) 1024
max locked memory (kbytes, -l) 32
max memory size (kbytes, -m) 100000
open files (-n) 2096
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
stack size (kbytes, -s) 10240
cpu time (seconds, -t) 900
max user processes (-u) 100
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
2 REPLIES 2
Steven E. Protter
Exalted Contributor
Solution

Re: How to configure ulimit for dba user?

Shalom,

As root you set global limits and you build the limits you want with ulimit commands in the user .profile file.

The man page for ulimit tells you the syntax for the commands.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
sowmyak
Occasional Contributor

Re: How to configure ulimit for dba user?

Thank you Steven