1. 程式人生 > >linux-日常運維- target介紹

linux-日常運維- target介紹

mark 設置 log targe -type ges http sha blog

target就是多個unit的組合

系統為了方便管理用target來管理unit
systemctl list-unit-files --type=target

systemctl list-dependencies multi-user.target //查看指定target下面有哪些unit
技術分享圖片
systemctl get-default //查看系統默認的target
技術分享圖片
systemctl set-default multi-user.target #設置默認的target ,同樣的也會創建軟鏈接
技術分享圖片
一個service屬於一種類型的unit
多個unit組成了一個target
一個target裏面包含了多個service

cat /usr/lib/systemd/system/sshd.service //看[install]部分 #可查看service屬於哪個tatget
技術分享圖片

linux-日常運維- target介紹