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 ;)


Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -