Para start
(ativar) um serviço, você executará o comando systemctl start my_service.service
, isso iniciará o serviço imediatamente na sessão atual.
Para enable
de um serviço na inicialização, você executará systemctl enable my_service.service
.
Enable one or more units or unit instances. This will create a set of symlinks, as encoded in the "[Install]" sections of the indicated unit files. After the symlinks have been created, the system manager configuration is reloaded (in a way equivalent to daemon-reload), in order to ensure the changes are taken into account immediately
Os scripts /usr/lib/systemd/system/
contém init
, quando você digita systemctl enable
para iniciar um serviço na inicialização, ele será vinculado a /etc/systemd/system/
.
#systemctl enable my_service.service
ln -s '/usr/lib/systemd/system/my_service.service' '/etc/systemd/system/multi-user.target.wants/my_service.service'