Eu tenho um problema em iniciar o próprio programa daemon usando systemctl
em Debian (o deamon entrou em gangue se isso tiver algum significado)
Eu criei o arquivo em /etc/systemd/system/tcp-server.service
. Seu conteúdo abaixo
[Service]
ExecStart=/home/guestiodeb/app/guestio-tcp-server/guestio-tcp-server
WorkingDirectory=/home/guestiodeb/app/guestio-tcp-server
Restart=always
User=guestiodeb
Group=guestiodeb
[Install]
WantedBy=multi-user.target
E depois tentei ativar e iniciar meu serviço
# systemctl enable tcp-server.service
# systemctl start tcp-server.service
O daemon não foi executado. Verifiquei o serviço de status e recebo dados
#systemctl status tcp-server.service
tcp-server.service
Loaded: loaded (/etc/systemd/system/tcp-server.service; enabled)
Active: failed (Result: start-limit) since Mon 2016-01-04 18:18:49 EST; 1min 13s ago
Process: 29327 ExecStart=/home/guestiodeb/app/guestio-tcp-server/guestio-tcp-server (code=exited, status=1/FAILURE)
Main PID: 29327 (code=exited, status=1/FAILURE)
Jan 04 18:18:49 guestIO systemd[1]: tcp-server.service: main process exited, code=exited, status=1/FAILURE
Jan 04 18:18:49 guestIO systemd[1]: Unit tcp-server.service entered failed state.
Jan 04 18:18:49 guestIO systemd[1]: tcp-server.service start request repeated too quickly, refusing to start.
Jan 04 18:18:49 guestIO systemd[1]: Failed to start tcp-server.service.
Jan 04 18:18:49 guestIO systemd[1]: Unit tcp-server.service entered failed state.
Onde está um problema?
Ps
Eu quero adicionar isso, eu também tenho outro próprio daemon, e eu o corro da mesma maneira que acima e tudo funciona bem. Eu não tenho idéia porque para este programa muito semelhante, desta maneira não funciona.