live555MediaServer run as daemon (CentOS 7)
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I want run live555MediaServer as a daemon on CentOS 7. I create following startup script.
live555.service (/usr/lib/systemd/system/live555.service)
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
And enable the service
systemctl enable live555
But the media server is never started after boot, i can start it manual without problems.
Status after boot:
[root@localhost ~]# systemctl status live555
â live555.service - Live555 Media Server
Loaded: loaded (/usr/lib/systemd/system/live555.service; static; vendor preset: disabled)
Active: inactive (dead)
systemctl list-dependencies live555
[root@localhost ~]# systemctl list-dependencies live555
live555.service
â âÂÂâÂÂ-.mount
â âÂÂâÂÂsystem.slice
â âÂÂâÂÂbasic.target
â â âÂÂâÂÂmicrocode.service
â â âÂÂâÂÂrhel-autorelabel-mark.service
â â âÂÂâÂÂrhel-autorelabel.service
â â âÂÂâÂÂrhel-configure.service
â â âÂÂâÂÂrhel-dmesg.service
â â âÂÂâÂÂrhel-loadmodules.service
â â âÂÂâÂÂselinux-policy-migrate-local-changes@targeted.service
â â âÂÂâÂÂpaths.target
â â âÂÂâÂÂslices.target
â â â âÂÂâÂÂ-.slice
â â â âÂÂâÂÂsystem.slice
â â âÂÂâÂÂsockets.target
â â â âÂÂâÂÂdbus.socket
â â â âÂÂâÂÂdm-event.socket
â â â âÂÂâÂÂsystemd-initctl.socket
â â â âÂÂâÂÂsystemd-journald.socket
â â â âÂÂâÂÂsystemd-shutdownd.socket
â â â âÂÂâÂÂsystemd-udevd-control.socket
â â â âÂÂâÂÂsystemd-udevd-kernel.socket
â â âÂÂâÂÂsysinit.target
â â â âÂÂâÂÂdev-hugepages.mount
â â â âÂÂâÂÂdev-mqueue.mount
â â â âÂÂâÂÂkmod-static-nodes.service
â â â âÂÂâÂÂlvm2-lvmetad.socket
â â â âÂÂâÂÂlvm2-lvmpolld.socket
â â â âÂÂâÂÂlvm2-monitor.service
â â â âÂÂâÂÂplymouth-read-write.service
â â â âÂÂâÂÂplymouth-start.service
â â â âÂÂâÂÂproc-sys-fs-binfmt_misc.automount
â â â âÂÂâÂÂsys-fs-fuse-connections.mount
â â â âÂÂâÂÂsys-kernel-config.mount
â â â âÂÂâÂÂsys-kernel-debug.mount
â â â âÂÂâÂÂsystemd-ask-password-console.path
â â â âÂÂâÂÂsystemd-binfmt.service
â â â âÂÂâÂÂsystemd-firstboot.service
â â â âÂÂâÂÂsystemd-hwdb-update.service
â â â âÂÂâÂÂsystemd-journal-catalog-update.service
â â â âÂÂâÂÂsystemd-journal-flush.service
â â â âÂÂâÂÂsystemd-journald.service
â â â âÂÂâÂÂsystemd-machine-id-commit.service
â â â âÂÂâÂÂsystemd-modules-load.service
â â â âÂÂâÂÂsystemd-random-seed.service
â â â âÂÂâÂÂsystemd-sysctl.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup-dev.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup.service
â â â âÂÂâÂÂsystemd-udev-trigger.service
â â â âÂÂâÂÂsystemd-udevd.service
â â â âÂÂâÂÂsystemd-update-done.service
â â â âÂÂâÂÂsystemd-update-utmp.service
â â â âÂÂâÂÂsystemd-vconsole-setup.service
â â â âÂÂâÂÂcryptsetup.target
â â â âÂÂâÂÂlocal-fs.target
â â â â âÂÂâÂÂ-.mount
â â â â âÂÂâÂÂboot.mount
â â â â âÂÂâÂÂrhel-import-state.service
â â â â âÂÂâÂÂrhel-readonly.service
â â â â âÂÂâÂÂsystemd-remount-fs.service
â â â âÂÂâÂÂswap.target
â â â âÂÂâÂÂdev-mapper-centosx2dswap.swap
â â âÂÂâÂÂtimers.target
â â âÂÂâÂÂsystemd-tmpfiles-clean.timer
â âÂÂâÂÂnetwork-online.target
â âÂÂâÂÂNetworkManager-wait-online.service
Update
I have add the "install" part, now it works
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
[Install]
WantedBy=default.target
centos systemd video daemon
add a comment |Â
up vote
0
down vote
favorite
I want run live555MediaServer as a daemon on CentOS 7. I create following startup script.
live555.service (/usr/lib/systemd/system/live555.service)
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
And enable the service
systemctl enable live555
But the media server is never started after boot, i can start it manual without problems.
Status after boot:
[root@localhost ~]# systemctl status live555
â live555.service - Live555 Media Server
Loaded: loaded (/usr/lib/systemd/system/live555.service; static; vendor preset: disabled)
Active: inactive (dead)
systemctl list-dependencies live555
[root@localhost ~]# systemctl list-dependencies live555
live555.service
â âÂÂâÂÂ-.mount
â âÂÂâÂÂsystem.slice
â âÂÂâÂÂbasic.target
â â âÂÂâÂÂmicrocode.service
â â âÂÂâÂÂrhel-autorelabel-mark.service
â â âÂÂâÂÂrhel-autorelabel.service
â â âÂÂâÂÂrhel-configure.service
â â âÂÂâÂÂrhel-dmesg.service
â â âÂÂâÂÂrhel-loadmodules.service
â â âÂÂâÂÂselinux-policy-migrate-local-changes@targeted.service
â â âÂÂâÂÂpaths.target
â â âÂÂâÂÂslices.target
â â â âÂÂâÂÂ-.slice
â â â âÂÂâÂÂsystem.slice
â â âÂÂâÂÂsockets.target
â â â âÂÂâÂÂdbus.socket
â â â âÂÂâÂÂdm-event.socket
â â â âÂÂâÂÂsystemd-initctl.socket
â â â âÂÂâÂÂsystemd-journald.socket
â â â âÂÂâÂÂsystemd-shutdownd.socket
â â â âÂÂâÂÂsystemd-udevd-control.socket
â â â âÂÂâÂÂsystemd-udevd-kernel.socket
â â âÂÂâÂÂsysinit.target
â â â âÂÂâÂÂdev-hugepages.mount
â â â âÂÂâÂÂdev-mqueue.mount
â â â âÂÂâÂÂkmod-static-nodes.service
â â â âÂÂâÂÂlvm2-lvmetad.socket
â â â âÂÂâÂÂlvm2-lvmpolld.socket
â â â âÂÂâÂÂlvm2-monitor.service
â â â âÂÂâÂÂplymouth-read-write.service
â â â âÂÂâÂÂplymouth-start.service
â â â âÂÂâÂÂproc-sys-fs-binfmt_misc.automount
â â â âÂÂâÂÂsys-fs-fuse-connections.mount
â â â âÂÂâÂÂsys-kernel-config.mount
â â â âÂÂâÂÂsys-kernel-debug.mount
â â â âÂÂâÂÂsystemd-ask-password-console.path
â â â âÂÂâÂÂsystemd-binfmt.service
â â â âÂÂâÂÂsystemd-firstboot.service
â â â âÂÂâÂÂsystemd-hwdb-update.service
â â â âÂÂâÂÂsystemd-journal-catalog-update.service
â â â âÂÂâÂÂsystemd-journal-flush.service
â â â âÂÂâÂÂsystemd-journald.service
â â â âÂÂâÂÂsystemd-machine-id-commit.service
â â â âÂÂâÂÂsystemd-modules-load.service
â â â âÂÂâÂÂsystemd-random-seed.service
â â â âÂÂâÂÂsystemd-sysctl.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup-dev.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup.service
â â â âÂÂâÂÂsystemd-udev-trigger.service
â â â âÂÂâÂÂsystemd-udevd.service
â â â âÂÂâÂÂsystemd-update-done.service
â â â âÂÂâÂÂsystemd-update-utmp.service
â â â âÂÂâÂÂsystemd-vconsole-setup.service
â â â âÂÂâÂÂcryptsetup.target
â â â âÂÂâÂÂlocal-fs.target
â â â â âÂÂâÂÂ-.mount
â â â â âÂÂâÂÂboot.mount
â â â â âÂÂâÂÂrhel-import-state.service
â â â â âÂÂâÂÂrhel-readonly.service
â â â â âÂÂâÂÂsystemd-remount-fs.service
â â â âÂÂâÂÂswap.target
â â â âÂÂâÂÂdev-mapper-centosx2dswap.swap
â â âÂÂâÂÂtimers.target
â â âÂÂâÂÂsystemd-tmpfiles-clean.timer
â âÂÂâÂÂnetwork-online.target
â âÂÂâÂÂNetworkManager-wait-online.service
Update
I have add the "install" part, now it works
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
[Install]
WantedBy=default.target
centos systemd video daemon
Make sure that you enable the service as well with "systemctl enable live555" This will cause it to run on boot
â Raman Sailopal
Oct 2 '17 at 11:10
i have enable the service, but i have copy the wrong command to my question.
â live2
Oct 2 '17 at 11:12
1
Don't you need an explicit[Install] WantedBy=
? If it's not wanted by the target, it probably won't get started.
â Ulrich Schwarz
Oct 2 '17 at 11:27
Also, does this service rely on a GUI session?
â Raman Sailopal
Oct 2 '17 at 11:32
@raman the service print on start to the console
â live2
Oct 2 '17 at 11:39
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want run live555MediaServer as a daemon on CentOS 7. I create following startup script.
live555.service (/usr/lib/systemd/system/live555.service)
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
And enable the service
systemctl enable live555
But the media server is never started after boot, i can start it manual without problems.
Status after boot:
[root@localhost ~]# systemctl status live555
â live555.service - Live555 Media Server
Loaded: loaded (/usr/lib/systemd/system/live555.service; static; vendor preset: disabled)
Active: inactive (dead)
systemctl list-dependencies live555
[root@localhost ~]# systemctl list-dependencies live555
live555.service
â âÂÂâÂÂ-.mount
â âÂÂâÂÂsystem.slice
â âÂÂâÂÂbasic.target
â â âÂÂâÂÂmicrocode.service
â â âÂÂâÂÂrhel-autorelabel-mark.service
â â âÂÂâÂÂrhel-autorelabel.service
â â âÂÂâÂÂrhel-configure.service
â â âÂÂâÂÂrhel-dmesg.service
â â âÂÂâÂÂrhel-loadmodules.service
â â âÂÂâÂÂselinux-policy-migrate-local-changes@targeted.service
â â âÂÂâÂÂpaths.target
â â âÂÂâÂÂslices.target
â â â âÂÂâÂÂ-.slice
â â â âÂÂâÂÂsystem.slice
â â âÂÂâÂÂsockets.target
â â â âÂÂâÂÂdbus.socket
â â â âÂÂâÂÂdm-event.socket
â â â âÂÂâÂÂsystemd-initctl.socket
â â â âÂÂâÂÂsystemd-journald.socket
â â â âÂÂâÂÂsystemd-shutdownd.socket
â â â âÂÂâÂÂsystemd-udevd-control.socket
â â â âÂÂâÂÂsystemd-udevd-kernel.socket
â â âÂÂâÂÂsysinit.target
â â â âÂÂâÂÂdev-hugepages.mount
â â â âÂÂâÂÂdev-mqueue.mount
â â â âÂÂâÂÂkmod-static-nodes.service
â â â âÂÂâÂÂlvm2-lvmetad.socket
â â â âÂÂâÂÂlvm2-lvmpolld.socket
â â â âÂÂâÂÂlvm2-monitor.service
â â â âÂÂâÂÂplymouth-read-write.service
â â â âÂÂâÂÂplymouth-start.service
â â â âÂÂâÂÂproc-sys-fs-binfmt_misc.automount
â â â âÂÂâÂÂsys-fs-fuse-connections.mount
â â â âÂÂâÂÂsys-kernel-config.mount
â â â âÂÂâÂÂsys-kernel-debug.mount
â â â âÂÂâÂÂsystemd-ask-password-console.path
â â â âÂÂâÂÂsystemd-binfmt.service
â â â âÂÂâÂÂsystemd-firstboot.service
â â â âÂÂâÂÂsystemd-hwdb-update.service
â â â âÂÂâÂÂsystemd-journal-catalog-update.service
â â â âÂÂâÂÂsystemd-journal-flush.service
â â â âÂÂâÂÂsystemd-journald.service
â â â âÂÂâÂÂsystemd-machine-id-commit.service
â â â âÂÂâÂÂsystemd-modules-load.service
â â â âÂÂâÂÂsystemd-random-seed.service
â â â âÂÂâÂÂsystemd-sysctl.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup-dev.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup.service
â â â âÂÂâÂÂsystemd-udev-trigger.service
â â â âÂÂâÂÂsystemd-udevd.service
â â â âÂÂâÂÂsystemd-update-done.service
â â â âÂÂâÂÂsystemd-update-utmp.service
â â â âÂÂâÂÂsystemd-vconsole-setup.service
â â â âÂÂâÂÂcryptsetup.target
â â â âÂÂâÂÂlocal-fs.target
â â â â âÂÂâÂÂ-.mount
â â â â âÂÂâÂÂboot.mount
â â â â âÂÂâÂÂrhel-import-state.service
â â â â âÂÂâÂÂrhel-readonly.service
â â â â âÂÂâÂÂsystemd-remount-fs.service
â â â âÂÂâÂÂswap.target
â â â âÂÂâÂÂdev-mapper-centosx2dswap.swap
â â âÂÂâÂÂtimers.target
â â âÂÂâÂÂsystemd-tmpfiles-clean.timer
â âÂÂâÂÂnetwork-online.target
â âÂÂâÂÂNetworkManager-wait-online.service
Update
I have add the "install" part, now it works
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
[Install]
WantedBy=default.target
centos systemd video daemon
I want run live555MediaServer as a daemon on CentOS 7. I create following startup script.
live555.service (/usr/lib/systemd/system/live555.service)
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
And enable the service
systemctl enable live555
But the media server is never started after boot, i can start it manual without problems.
Status after boot:
[root@localhost ~]# systemctl status live555
â live555.service - Live555 Media Server
Loaded: loaded (/usr/lib/systemd/system/live555.service; static; vendor preset: disabled)
Active: inactive (dead)
systemctl list-dependencies live555
[root@localhost ~]# systemctl list-dependencies live555
live555.service
â âÂÂâÂÂ-.mount
â âÂÂâÂÂsystem.slice
â âÂÂâÂÂbasic.target
â â âÂÂâÂÂmicrocode.service
â â âÂÂâÂÂrhel-autorelabel-mark.service
â â âÂÂâÂÂrhel-autorelabel.service
â â âÂÂâÂÂrhel-configure.service
â â âÂÂâÂÂrhel-dmesg.service
â â âÂÂâÂÂrhel-loadmodules.service
â â âÂÂâÂÂselinux-policy-migrate-local-changes@targeted.service
â â âÂÂâÂÂpaths.target
â â âÂÂâÂÂslices.target
â â â âÂÂâÂÂ-.slice
â â â âÂÂâÂÂsystem.slice
â â âÂÂâÂÂsockets.target
â â â âÂÂâÂÂdbus.socket
â â â âÂÂâÂÂdm-event.socket
â â â âÂÂâÂÂsystemd-initctl.socket
â â â âÂÂâÂÂsystemd-journald.socket
â â â âÂÂâÂÂsystemd-shutdownd.socket
â â â âÂÂâÂÂsystemd-udevd-control.socket
â â â âÂÂâÂÂsystemd-udevd-kernel.socket
â â âÂÂâÂÂsysinit.target
â â â âÂÂâÂÂdev-hugepages.mount
â â â âÂÂâÂÂdev-mqueue.mount
â â â âÂÂâÂÂkmod-static-nodes.service
â â â âÂÂâÂÂlvm2-lvmetad.socket
â â â âÂÂâÂÂlvm2-lvmpolld.socket
â â â âÂÂâÂÂlvm2-monitor.service
â â â âÂÂâÂÂplymouth-read-write.service
â â â âÂÂâÂÂplymouth-start.service
â â â âÂÂâÂÂproc-sys-fs-binfmt_misc.automount
â â â âÂÂâÂÂsys-fs-fuse-connections.mount
â â â âÂÂâÂÂsys-kernel-config.mount
â â â âÂÂâÂÂsys-kernel-debug.mount
â â â âÂÂâÂÂsystemd-ask-password-console.path
â â â âÂÂâÂÂsystemd-binfmt.service
â â â âÂÂâÂÂsystemd-firstboot.service
â â â âÂÂâÂÂsystemd-hwdb-update.service
â â â âÂÂâÂÂsystemd-journal-catalog-update.service
â â â âÂÂâÂÂsystemd-journal-flush.service
â â â âÂÂâÂÂsystemd-journald.service
â â â âÂÂâÂÂsystemd-machine-id-commit.service
â â â âÂÂâÂÂsystemd-modules-load.service
â â â âÂÂâÂÂsystemd-random-seed.service
â â â âÂÂâÂÂsystemd-sysctl.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup-dev.service
â â â âÂÂâÂÂsystemd-tmpfiles-setup.service
â â â âÂÂâÂÂsystemd-udev-trigger.service
â â â âÂÂâÂÂsystemd-udevd.service
â â â âÂÂâÂÂsystemd-update-done.service
â â â âÂÂâÂÂsystemd-update-utmp.service
â â â âÂÂâÂÂsystemd-vconsole-setup.service
â â â âÂÂâÂÂcryptsetup.target
â â â âÂÂâÂÂlocal-fs.target
â â â â âÂÂâÂÂ-.mount
â â â â âÂÂâÂÂboot.mount
â â â â âÂÂâÂÂrhel-import-state.service
â â â â âÂÂâÂÂrhel-readonly.service
â â â â âÂÂâÂÂsystemd-remount-fs.service
â â â âÂÂâÂÂswap.target
â â â âÂÂâÂÂdev-mapper-centosx2dswap.swap
â â âÂÂâÂÂtimers.target
â â âÂÂâÂÂsystemd-tmpfiles-clean.timer
â âÂÂâÂÂnetwork-online.target
â âÂÂâÂÂNetworkManager-wait-online.service
Update
I have add the "install" part, now it works
[Unit]
Description=Live555 Media Server
Requires=network-online.target
After=network.target network-online.target local-fs.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/opt/live555/live555MediaServer
WorkingDirectory=/opt/live555
[Install]
WantedBy=default.target
centos systemd video daemon
centos systemd video daemon
edited Oct 3 '17 at 5:41
asked Oct 2 '17 at 11:07
live2
1011
1011
Make sure that you enable the service as well with "systemctl enable live555" This will cause it to run on boot
â Raman Sailopal
Oct 2 '17 at 11:10
i have enable the service, but i have copy the wrong command to my question.
â live2
Oct 2 '17 at 11:12
1
Don't you need an explicit[Install] WantedBy=
? If it's not wanted by the target, it probably won't get started.
â Ulrich Schwarz
Oct 2 '17 at 11:27
Also, does this service rely on a GUI session?
â Raman Sailopal
Oct 2 '17 at 11:32
@raman the service print on start to the console
â live2
Oct 2 '17 at 11:39
add a comment |Â
Make sure that you enable the service as well with "systemctl enable live555" This will cause it to run on boot
â Raman Sailopal
Oct 2 '17 at 11:10
i have enable the service, but i have copy the wrong command to my question.
â live2
Oct 2 '17 at 11:12
1
Don't you need an explicit[Install] WantedBy=
? If it's not wanted by the target, it probably won't get started.
â Ulrich Schwarz
Oct 2 '17 at 11:27
Also, does this service rely on a GUI session?
â Raman Sailopal
Oct 2 '17 at 11:32
@raman the service print on start to the console
â live2
Oct 2 '17 at 11:39
Make sure that you enable the service as well with "systemctl enable live555" This will cause it to run on boot
â Raman Sailopal
Oct 2 '17 at 11:10
Make sure that you enable the service as well with "systemctl enable live555" This will cause it to run on boot
â Raman Sailopal
Oct 2 '17 at 11:10
i have enable the service, but i have copy the wrong command to my question.
â live2
Oct 2 '17 at 11:12
i have enable the service, but i have copy the wrong command to my question.
â live2
Oct 2 '17 at 11:12
1
1
Don't you need an explicit
[Install] WantedBy=
? If it's not wanted by the target, it probably won't get started.â Ulrich Schwarz
Oct 2 '17 at 11:27
Don't you need an explicit
[Install] WantedBy=
? If it's not wanted by the target, it probably won't get started.â Ulrich Schwarz
Oct 2 '17 at 11:27
Also, does this service rely on a GUI session?
â Raman Sailopal
Oct 2 '17 at 11:32
Also, does this service rely on a GUI session?
â Raman Sailopal
Oct 2 '17 at 11:32
@raman the service print on start to the console
â live2
Oct 2 '17 at 11:39
@raman the service print on start to the console
â live2
Oct 2 '17 at 11:39
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f395623%2flive555mediaserver-run-as-daemon-centos-7%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Make sure that you enable the service as well with "systemctl enable live555" This will cause it to run on boot
â Raman Sailopal
Oct 2 '17 at 11:10
i have enable the service, but i have copy the wrong command to my question.
â live2
Oct 2 '17 at 11:12
1
Don't you need an explicit
[Install] WantedBy=
? If it's not wanted by the target, it probably won't get started.â Ulrich Schwarz
Oct 2 '17 at 11:27
Also, does this service rely on a GUI session?
â Raman Sailopal
Oct 2 '17 at 11:32
@raman the service print on start to the console
â live2
Oct 2 '17 at 11:39