WantedBymultiusertarget
WantedBy is a directive used in the install section of a systemd unit file. It declares which targets should cause the unit to be started when the target is activated, by creating a symbolic link in the target's wants directory.
For example, [Install] WantedBy=multi-user.target means that enabling the unit will cause systemd to create a link
This relationship is a "Wants" dependency, which is weaker than a "Requires" dependency. It expresses a preference
Management is performed with systemctl enable and systemctl disable. Enabling creates the link; disabling removes it.
Notes: The install section and WantedBy entries affect boot-time activation, not runtime behavior by themselves. They