Ubuntu

Systemd 服務 - 什麼是multi-user.target

  • March 16, 2019

我遇到了一個.service包含以下內容:

[Install]
WantedBy=multi-user.target

原始.service文件可以在這裡找到。

我在 Ubuntu 16.04LTS 上。

這是 systemd 中的依賴關係處理機制。multi-user.target 是 systemV 世界中執行級別 3 的替代方案。也就是說,達到 multi-user.target 包括啟動“Confluent ZooKeeper”服務。可能這正是你所需要的。

multi-user.target表示 systemd-service 將在系統達到執行級別 2 時啟動。

為了補充答案,下面是目標及其執行級別的表格:

Run Lvl Target Units                        Description
0       runlevel0.target, poweroff.target   Shut down and power off
1       runlevel1.target, rescue.target     Set up a rescue shell
2,3,4   runlevel[234].target,               Set up a non-gfx multi-user shell
       multi-user.target
5       runlevel5.target, graphical.target  Set up a gfx multi-user shell
6       runlevel6.target, reboot.target     Shut down and reboot the system

引用自:https://unix.stackexchange.com/questions/404667