ubuntu
パスワードの入力を求められることなく特定のサービスを実行できるように、デフォルトのユーザーが必要です。
具体的にはsystemctl restart unicorn_my_app.service
。
ここでの指示に従ってubuntu
、新しく作成されたグループにユーザーを追加しますLimitedAdmins
。
$ getent group LimitedAdmins
LimitedAdmins:x:1001:ubuntu
次のテキストを含むディレクトリにlimitedadmins
(を使用してsudo vim
)新しいファイルを作成しました/etc/sudoers.d
。
%LimitedAdmins ALL=NOPASSWD: /etc/init.d/unicorn_ofn_america restart, /etc/init.d/unicorn_ofn_america start
私も試しました:
%LimitedAdmins ALL=NOPASSWD: /bin/systemctl/unicorn_ofn_america restart, /bin/systemctl/unicorn_ofn_america start
(そして/bin/systemd
)
の内容/etc/sudoers/
は、sudo visudo
(またはsudo cat /etc/sudoers
)で確認されたデフォルトです:
#
# 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
# User privilege specification
root ALL=(ALL:ALL) ALL
# 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
(ハッシュサインイン#includedir
はコメントではなく、#includeディレクティブ構文の一部です)。
ただし、実行後に引き続きパスワードプロンプトが表示されます systemctl restart unicorn_my_app.service
サービスはinit.d
ディレクトリにあります:
$ ls -l /etc/init.d | grep unicorn
-rwxr--r-- 1 ubuntu ubuntu 1874 Oct 29 06:47 unicorn_my_app
755
アプリでchmodding を試しましたが、ubuntu
とにかくそれを所有しているので、それが違いを生むとは思わないでください。
システムを再起動しても、違いはありませんでした。再起動/リロードなどの手順がありませんか?何か間違ったことを設定していますか?
コマンドは編集専用であるように思えるので、私は以前vim
に新しいファイルを作成したことに言及するべきです。/etc/sudoers.d
visudo
/etc/sudoers