Возникла проблема с sudo. Как пользователь forge
Я хочу иметь возможность бегать sudo service php5-fpm reload
без ввода пароля. Я перепробовал все варианты ниже.
forge ALL=NOPASSWD: /usr/bin/service php5-fpm reload
forge ALL=NOPASSWD: /usr/bin/service
forge ALL=(ALL:ALL) NOPASSWD: /usr/bin/service
forge ALL=(ALL:ALL) NOPASSWD: /usr/bin/service php5-fpm reload
Но он все время предлагает мне ввести пароль. Пробовал войти и выйти.
# tail /var/log/auth.log
Sep 16 09:28:19 apps sudo: pam_unix(sudo:auth): conversation failed
Sep 16 09:28:19 apps sudo: pam_unix(sudo:auth): auth could not identify password for [forge]
Это весь файл.
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# Host alias specification
# User alias specification
# Cmnd alias specification
Cmnd_Alias SERVICES = /sbin/service, /sbin/chkconfig
# User privilege specification
root ALL=(ALL:ALL) ALL
#forge ALL=NOPASSWD: /usr/bin/service
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
Использование Ubuntu 14.04.1 LTS
$ which service
/usr/sbin/service
Эта проблема:
$ sudo service
[sudo] password for forge:
Вот что сработало.
visudo:
# Cmnd alias specification
Cmnd_Alias SERVICES = /sbin/service, /sbin/chkconfig/, /usr/bin/service, /usr/sbin/service
/etc/sudoers.d/forge
:
forge ALL = (ALL) NOPASSWD: SERVICES
Пытался переместить содержимое forge
файл в visudo
, но это не сработало.
Ты ошибаешься PATH
в двоичный. В which
вывод показывает, что это /usr/sbin/service
, но вы продолжаете указывать /usr/bin/service
в твоем sudoers
записи.
Пытаться
forge ALL=(ALL) NOPASSWD: /usr/sbin/service
Попробуйте следующее:
/etc/sudoers
:
# grep -B1 'Cmnd_Alias SERVICES' /etc/sudoers
## Services
Cmnd_Alias SERVICES = /sbin/service, /sbin/chkconfig
#
/etc/sudoers.d/forge
:
# cat /etc/sudoers.d/forge
forge ALL = (ALL) NOPASSWD: SERVICES
#
тест
[forge@localhost ~]$ sudo service
Usage: service < option > | --status-all | [ service_name [ command | --full-restart ] ]
[forge@localhost ~]$
Отрегулировать ВЕРНЫЙ путь к твоему service
при необходимости это может варьироваться в зависимости от вашего дистрибутива, чтобы найти правильный путь, выполните следующие действия:
$ which service
/sbin/service
$