LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   ulimit (https://www.linuxquestions.org/questions/linux-software-2/ulimit-27054/)

Serena 08-02-2002 02:06 PM

ulimit
 
I compiled a server whose startup script calls ulimit twice, and both times I get an operation not permitted error. In RH 7.2, how can I make a list of users (or a group) that can use ulimit so that I don't have to run as root?

neo77777 08-03-2002 10:50 AM

You can set up sudo and /etc/sudoers file to give certain users certain rights; another way is setup a group admins with
groupaddb -r admins
it creates system account group (with gid <= 499)
and then add users to this group with
usermod -G gid_of_admins user_name
gid_of_admins can be found in /etc/group file (three-digit number)
and change perms on ulimit with
chown root:admins /path/to/ulimit; chmod 750 /path/to/ulimit
in this case only root and admins group would be able to execute ulimit

Serena 08-03-2002 05:10 PM

I wanted to use the new group approach, but I discovered ulimit is a built-in command without an executable file. Can I still do it this way?

neo77777 08-04-2002 12:22 AM

Then probably sudo is the best solution

Cagebreinne01 12-17-2014 12:51 PM

Quote:

Originally Posted by neo77777 (Post 124484)
Then probably sudo is the best solution

Thanks guy, For helping here.what you say about "Sudo version 1.8.12b3" Okay for me?

John VV 12-17-2014 05:53 PM

Cagebreinne01
you are aware that rh7.2 is a VERY LONG DEAD version of redhat
and this 12 year old thread is well 12 years OLD , and for a OS that is DEAD

Cagebreinne01 12-17-2014 11:04 PM

Quote:

Originally Posted by John VV (Post 5286602)
Cagebreinne01
you are aware that rh7.2 is a VERY LONG DEAD version of redhat
and this 12 year old thread is well 12 years OLD , and for a OS that is DEAD

No I am just searching on net, I wasn't be see its date.


All times are GMT -5. The time now is 03:42 AM.