ฉันต้องการให้ผู้ใช้เริ่มต้น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
พยายาม chmodding 755
ในแอพ แต่อย่าคิดว่าควรสร้างความแตกต่างเพราะubuntu
เป็นเจ้าของมันอยู่ดี
แม้ลองรีบูตระบบโดยไม่มีความแตกต่าง ฉันไม่มีขั้นตอนเช่นเริ่ม / โหลดใหม่) กำหนดค่าสิ่งผิดปกติหรือไม่
ฉันควรจะพูดถึงว่าผมใช้vim
ในการสร้างไฟล์ใหม่ใน/etc/sudoers.d
ขณะที่มันดูเหมือนว่าvisudo
คำสั่งเป็นเพียง/etc/sudoers
สำหรับการแก้ไข