본문 바로가기

Software&Hardware/OS_Linux

linux상에서 패스워드 없이 sudo 사용

반응형

Title: Simple NOPASSWD sudoers syntax example required

 

Hi
 I require my user 'www' to run the command '/sbin/service crond restart' without having to use the root password.
How do I write this in /etc/sudoers?

 Thank you
tr5

 

 

 

 

 

I did that, but when I run

www> sudo /sbin/service  crond restart

I get this error:
sudo: must be setuid root

I used visudo to make a /etc/sudoers, which looks like this:

Host_Alias     LOCAL = 127.0.0.1
root    ALL=(ALL) ALL
www     LOCAL = NOPASSWD: /sbin/service crond restart

[유저이름]  ALL= NOPASSWD:"실행시키고 싶은 명령어"


What am I doing wrong?

 

출처 : http://www.experts-exchange.com/Security/Linux_Security/Q_21975040.html

 

---------------------------------------------------------------------------------------

 

sudo 사용하여 일반계정에서 어떤 특정한 명령어를 루트계정을 실행시킬때

패스워드 없이 ( 일반적으로 자동으로 실행시킬때 필요했다.) 사용하려고 하였다.

반응형

'Software&Hardware > OS_Linux' 카테고리의 다른 글

터치스크린 설정방법 (touchkit)  (0) 2014.05.07
sudo사용의 필요성  (0) 2013.12.08
vim 사용법  (0) 2013.12.08
ramdisk 생성 ( Linux )  (0) 2013.12.08
xset 설정  (0) 2013.12.05