“ systemctl daemon-reload” ทำอะไร


46

ฉันมีบริการที่หยุดกะทันหัน ฉันพยายามเริ่มบริการนั้นใหม่ แต่ล้มเหลวและขอให้เรียกใช้ "systemctl daemon-reload"

มันทำอะไรกันแน่? "daemon reload คืออะไร"

คำตอบ:


47

man systemctl พูดว่า:

   daemon-reload
       Reload systemd manager configuration. This will rerun all generators (see systemd.generator(7)), reload
       all unit files, and recreate the entire dependency tree. While the daemon is being reloaded, all sockets
       systemd listens on behalf of user configuration will stay accessible.

       This command should not be confused with the reload command.

ดังนั้นมันจึงเป็นการโหลดที่ "เบา" เป็นหลัก การกำหนดค่าการเปลี่ยนจากระบบแฟ้มและปฏิรูปต้นไม้พึ่งพา

ดังนั้นsystemd.generatorรัฐ:

เครื่องกำเนิดไฟฟ้าเป็นไบนารีขนาดเล็กที่อาศัยอยู่ใน / usr / lib / systemd / user-generators / และไดเรกทอรีอื่น ๆ ที่ระบุไว้ข้างต้น systemd (1) จะรันไบนารีเหล่านี้ตั้งแต่เริ่มต้นระบบและเวลาโหลดการกำหนดค่า - ก่อนที่จะโหลดไฟล์หน่วย เครื่องกำเนิดไฟฟ้าสามารถสร้างไฟล์หน่วยแบบไดนามิกหรือสร้างลิงค์สัญลักษณ์ไปยังไฟล์หน่วยเพื่อเพิ่มการพึ่งพาเพิ่มเติมดังนั้นจึงเป็นการขยายหรือลบล้างคำจำกัดความที่มีอยู่ วัตถุประสงค์หลักของพวกเขาคือการแปลงไฟล์กำหนดค่าที่ไม่ใช่ไฟล์หน่วยเนทีฟแบบไดนามิกเป็นไฟล์หน่วยดั้งเดิม

   Generators are loaded from a set of paths determined during compilation, listed above. System and user
   generators are loaded from directories with names ending in system-generators/ and user-generators/,
   respectively. Generators found in directories listed earlier override the ones with the same name in
   directories lower in the list. A symlink to /dev/null or an empty file can be used to mask a generator,
   thereby preventing it from running. Please note that the order of the two directories with the highest
   priority is reversed with respect to the unit load path and generators in /run overwrite those in /etc.

   After installing new generators or updating the configuration, systemctl daemon-reload may be executed. This
   will delete the previous configuration created by generators, re-run all generators, and cause systemd to
   reload units from disk. See systemctl(1) for more information.
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.