Systemd Service not starting up my application -
i new systemd service scripts. trying start application systemd service scripts. application process in turn invokes multiple process includes qt gui 1 of child. service downt starting application.
this how service looks like:
[unit] description=/etc/rc.d/rc.local compatibility conditionfileisexecutable=/etc/rc.d/rc.local after=network.target [service] type=forking execstart=/etc/rc.d/rc.local start sysvstartpriority=99 rc.local script looks like: #!/bin/bash export display=:0 sleep 5 cd /var/minc3/apps ./pmontsk
so when try run command "systemctl start rc-local.service", command executes script doesnt invoke application. if replace other qt gui sample application in plcae of application in rc.local, working fine. please me on sorting issue.
if add
[install] wantedby=multi-user.target
i think work ;)