ulimit Command Problem???


 
Thread Tools Search this Thread
Operating Systems HP-UX ulimit Command Problem???
# 1  
Old 06-11-2011
ulimit Command Problem???

Hi,

I have changed the ulimit for the user dsadm on one of my server. Its only changed IF i su to dsadm from root, but its not changing if i ssh to dsadm.

i want to change the data(kbytes)to unlimited. i edit the /etc/profile and .profile of dsadm user by set this my OS 11.31

Code:
ulimit -d unlimited


Code:
>id
uid=0(root) gid=3(sys) groups=0(root),1(other),2(bin),4(adm),5(daemon),6(mail),7(lp),20(users)

>ulimit -Ha
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) unlimited
stack(kbytes) 131072
memory(kbytes) unlimited
coredump(blocks) unlimited
nofiles(descriptors) 63488

>ulimit -Sa
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) unlimited
stack(kbytes) 131072
memory(kbytes) unlimited
coredump(blocks) 4194303
nofiles(descriptors) 8000

but when i login to server directly with a dsadm user i facing this error and i see limited number for a data.

Code:
/etc/profile[132]: ulimit: exceeds allowable limit
${HOME:-.}/.profile[37]: ulimit: exceeds allowable limit

Code:
$ id
uid=111(dsadm) gid=107(dstage)

Code:
$ ulimit -Ha
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 131072
memory(kbytes) unlimited
coredump(blocks) unlimited

Code:
$ ulimit -Sa
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 131072
memory(kbytes) unlimited
coredump(blocks) 4194303

the kctune command output
Code:
maxdsiz 1073741824 Default Immed
maxdsiz_64bit 2147483648 2147483648 Immed
maxfiles 8000 8000 
maxfiles_lim 63488 63488 Immed
maxrsessiz 8388608 Default 
maxrsessiz_64bit 8388608 Default 
maxssiz 134217728 134217728 Immed
maxssiz_64bit 1073741824 1073741824 Immed
maxtsiz 100663296 Default Immed
maxtsiz_64bit 1073741824 Default Immed

please i need your support.

Thanks

Last edited by radoulov; 06-11-2011 at 06:22 PM.. Reason: added code tags
# 2  
Old 06-13-2011
The ulimit -d unlimited is not a valid value.

Judging from the current kctune output valid ulimit for user is the kernel parameters are stopping you to increase it further.

Since it's closely related to maxdsize (which is in bytes, while ulimit is in KB)

After increasing the value of maxdsiz parameter you will be able to increase the ulimit -d to more, upto 4GB.

I belive unlimited is wrongly displayed, but i'm open for suggestions.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

ulimit command

In Linux, What is the difference between using this command ulimit -c `ulimit -cH` and ulimit -c `ulimit -Hc` ? Thanks (4 Replies)
Discussion started by: mrn6430
4 Replies

2. Linux

ulimit -n

Hi im a complete noob to shell commands but here is my problem i have a dedicated server i7 with 24 gig ram i have whm/cpanel on it now ive added a minecraft system to root but i cannot set the server to more than 512mb memory i was told its because the memory is being blocked and was told to... (7 Replies)
Discussion started by: gazzac
7 Replies

3. UNIX for Advanced & Expert Users

Setting Ulimit problem

I changed the standard Ulimit sometime back. But when I change it back, the setting does not get updated. How do I make the change permanent Waitstejo (7 Replies)
Discussion started by: Waitstejo
7 Replies

4. SCO

problem with ulimit

hi, i cant set ULIMIT for normal user (file size more than 2gb).but in root user it is working fine.in user it is giving error like "limit exceeded (priviledged user)". (2 Replies)
Discussion started by: prakrithi
2 Replies

5. Solaris

ulimit command

Hi, I have a Sun machine 5.8 and would like to modify the ulimit parameter for numner of file descriptors. the output of plimit <process name> is: 4100: process_name resource current maximum time(seconds) unlimited unlimited file(blocks) ... (8 Replies)
Discussion started by: inquirer
8 Replies

6. Programming

ulimit problem

I would like to know where is the ulimit value stored in the shell. And how to get or modify it using the C program. I run the command ulimit it shows me unlimited and quits. Where that value is stored. Thanks (1 Reply)
Discussion started by: mobile01
1 Replies

7. UNIX for Dummies Questions & Answers

ulimit

Hi, system aix 4.3 when I execute umilit i get result "unlimited". why cant i ftp or extract from media filesize over 2gig.... e.g FS /test/testy is large file enabled. any help will be greatly appreciated. thnx (3 Replies)
Discussion started by: Student37
3 Replies

8. Solaris

ulimit setting problem on Solaris

How do you make the ulimit values permanent for a user? by default, the root login has the following ulimits: # ulimit -a time(seconds) unlimited file(blocks) unlimited data(kbytes) unlimited stack(kbytes) 8192 coredump(blocks) unlimited nofiles(descriptors) 1024 memory(kbytes)... (2 Replies)
Discussion started by: kiem
2 Replies

9. UNIX for Advanced & Expert Users

ulimit problem(Urgent)

Hi all, In Tru64 UNIX,there is a command ulimit which sets or reports a resource limit. -d option specifies number of Kilobytes for data area. But when i give same man ulimit in HP-UX, it does shows some ulimit function. I want to replace ulimit -d command in .profile file which... (1 Reply)
Discussion started by: informshilpa
1 Replies

10. UNIX for Dummies Questions & Answers

ulimit problem

i've encountered the following problem with sco unixware7. after using the "ulimit -f unlimited" command and then using "ulimit -a" it lists the filesize as unlimited. BUT, when type the ulimit command without parameters, the output is given as 4194303 so i can't create a file bigger than... (4 Replies)
Discussion started by: roydv
4 Replies
Login or Register to Ask a Question