/etc/security/limits value change


 
Thread Tools Search this Thread
Operating Systems AIX /etc/security/limits value change
# 1  
Old 10-25-2012
[Solved] /etc/security/limits value change

Hello,

I have changed the value for one user in /etc/security/limit via root user

as paul:
Code:
       time(seconds) unlimited
       file(blocks) 2097151
       data(kbytes) unlimited
       stack(kbytes) unlimited
       memory(kbytes) unlimited
       coredump(blocks) unlimited
       nofiles(descriptors) unlimited

Now, when i am logging in via user paul to check the effective limits
via limits -a

It is showing me the new limits

How to get new limits effective? please help me...

Moderator's Comments:
Mod Comment edit by bakunin: please use CODE-tags, not only for code but also for terminal output and data. It enhances readability greatly and sets apart your describing text and the data you provide. Thank you.

Last edited by bakunin; 10-25-2012 at 08:40 AM..
# 2  
Old 10-25-2012
you mean you see the old limits?

possible syntax error in the file

you can always change aix security files with chsec

Code:
chsec -f /etc/security/limits -s bin -a fsize=-1

for example
# 3  
Old 10-25-2012
AFAIK the limits are set when a session starts, so you probably have to log in again as "paul" to see the new limits in effect.

In general, using "chsec" as funksen said, is the preferable way to do these things in AIX.

I hope this helps.

bakunin
# 4  
Old 10-25-2012
i changed the value's using vi /etc/security/limits

its this not the correct way or should i delete these changes and try via chsec??

---------- Post updated 10-26-12 at 12:42 AM ---------- Previous update was 10-25-12 at 05:51 PM ----------

@funksen - chsec was the correct way of doing this..

It worked fine

Thanks to all
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Limits on 32 and 64 bit in C++ / C

Hi All, I am getting below run time error I checked the code and see the structure defined as below and using the file position variable typedef struct Get_file { char *current_pathname; unsigned int tot_bytes_io, physical_position; int... (2 Replies)
Discussion started by: arunkumar_mca
2 Replies

2. UNIX for Dummies Questions & Answers

Soft and hard limits for nproc value in /etc/security/limits.conf file (Linux )

OS version : RHEL 6.5 Below is an excerpt from /etc/security/limits.conf file for OS User named appusr in our server appusr soft nproc 2047 appusr hard nproc 16384 What will happen if appusr has already spawned 2047 processes and wants to spawn 2048th process ? I just want to know... (3 Replies)
Discussion started by: kraljic
3 Replies

3. Solaris

equivalent of linux /etc/security/limits

Hi, I would like to know, how can I set limits (noproc,fsize,core, data...) to users in solaris, i.e. I want solaris counterpart/equivalent of linux /etc/security/limits.conf Thanks!! (0 Replies)
Discussion started by: kiekurt
0 Replies

4. Linux

/etc/security/limits.conf NIS netgroup support

Hi there, I am trying to set a ulimit max in the /etc/security/limits.conf against a NIS netgroup (which contains a whole bunch of users) instead of a local user or group. so I have a NIS netgroup called +@myusers , none of whose users are defined locally on the box. I want to ensure that... (2 Replies)
Discussion started by: rethink
2 Replies

5. AIX

Security user Can't change the groups.

Dears Security users in AIX don’t have permission to change the group of the user thru Smitty Users When they try to change the group of the users to any group they'll get permission denied Security profile in Smitty : User... (10 Replies)
Discussion started by: ITHelper
10 Replies

6. UNIX for Dummies Questions & Answers

ulimit and /etc/security/limits file permission

Hi there, I am working on AIX and i dont have permission for /etc/security/limits file. In the man page of ulimit it is mentioned that it will get the limitations for me from /etc/security/limits file. the file permission for ulimit command is -r-xr-xr-x 15 bin bin ... (6 Replies)
Discussion started by: quintet
6 Replies

7. Solaris

Solaris counterpart of /etc/security/limits.conf

Hi, How can we set per user core file size, etc in solaris, i.e. I want solaris counterpart/equivalent of linux /etc/security/limits.conf. TIA (0 Replies)
Discussion started by: slash_blog
0 Replies

8. UNIX for Advanced & Expert Users

/etc/security/limits.conf

HI, To restrict the number of files and number of processes used the user we use the following configuration in the file /etc/security/limits.conf. oracle soft nofile 65572 oracle hard nofile 65572 oracle soft noproc 16384 oracle soft noproc 16384 My question is what do the 'soft' and... (1 Reply)
Discussion started by: praveen_b744
1 Replies

9. UNIX for Dummies Questions & Answers

How do I change security on a file or directory?

What command(s) do I use to change the security on a file? I need to change the owner as well as read write end execute options. (5 Replies)
Discussion started by: ekkehard
5 Replies

10. UNIX for Dummies Questions & Answers

tar--limits ????

Hi! All, This is True64 Unix, 4.0.F patch kit 4 I have a 15GB Oracle dump file that I have to backup to tape. I am trying to use "tar" to dump it to tape, but tar complained that the file was too big and that it was truncating it!. I am compressing the file using the "compress" utility.... (3 Replies)
Discussion started by: sdharmap
3 Replies
Login or Register to Ask a Question