[erledigt] Debian Stretch Autorun service Systemd

Vom einfachen Programm zum fertigen Debian-Paket, Fragen rund um Programmiersprachen, Scripting und Lizenzierung.
Antworten
ASbetebe
Beiträge: 15
Registriert: 14.11.2018 07:31:59

[erledigt] Debian Stretch Autorun service Systemd

Beitrag von ASbetebe » 21.10.2020 08:44:03

Hallo,
ich brauch mal etwas Unterstützung.
Beaglebone (Debian V9_9 iot)

Ich habe eine App in node.js geschrieben.
In dem Verzeichnis habe ich eine package.json
{
"name": "MCP",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "browserify ./app.js > ./public/bundle.js"
},
"dependencies": {
"browserify": "^16.2.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"graceful-fs": "^4.2.4",
"http-errors": "~1.6.2",
"i2c-bus": "^4.0.9",
"influx": "^5.4.0",
"jquery": "^3.3.1",
"morgan": "~1.9.0",
"node-crc": "^1.2.2",
"nodemailer": "^6.3.1",
"pug": "2.0.0-beta11",
"socket.io": "^2.1.1",
"socketcan": "^2.5.0",
"spi-device": "^2.0.9"
}
}


Die App funktioniert einwandfrei wenn ich diese wie folgt starte:
/var/lib/cloud9/BBB_WebApp$ npm run start
oder
/var/lib/cloud9/BBB_WebApp$ npm start

Jetzt möchte ich das diese App automatisch nach dem booten ausgeführt wird.
Dafür verwende ich systemd.
$ sudo nano /lib/systemd/system/Start_MCP.service

[Unit]
Description=Start MCP Service
After=network.target

[Service]
User=debian
ExecStart=/usr/bin/npm run start
WorkingDirectory=/var/lib/cloud9/BBB_WebApp/
#Restart=on-failure
StandardOutput=syslog
StandardError=syslog

[Install]
WantedBy=multi-user.target


$ systemctl daemon-reload
$ systemctl enable Start_MCP.service
$ systemctl start Start_MCP.service


Nach ein paar Sekunden stoppt die App.
$ systemctl status Start_MCP.service

In der syslog Datei erhalte ich folgendes.
Oct 20 08:29:52 beaglebone systemd[1]: Started Start MCP Service.
Oct 20 08:29:59 beaglebone npm[9518]: > mcp@0.0.0 start /var/lib/cloud9/BBB_WebApp
Oct 20 08:29:59 beaglebone npm[9518]: > node ./bin/www
Oct 20 08:30:03 beaglebone npm[9518]: module.js:478
Oct 20 08:30:03 beaglebone npm[9518]: throw err;
Oct 20 08:30:03 beaglebone npm[9518]: ^
Oct 20 08:30:03 beaglebone npm[9518]: Error: Cannot find module 'bonescript'
Oct 20 08:30:03 beaglebone npm[9518]: at Function.Module._resolveFilename (module.js:476:15)
Oct 20 08:30:03 beaglebone npm[9518]: at Function.Module._load (module.js:424:25)
Oct 20 08:30:03 beaglebone npm[9518]: at Module.require (module.js:504:17)
Oct 20 08:30:03 beaglebone npm[9518]: at require (internal/module.js:20:19)
Oct 20 08:30:03 beaglebone npm[9518]: at Object. (/var/lib/cloud9/BBB_WebApp/bin/www:26:9)
Oct 20 08:30:03 beaglebone npm[9518]: at Module._compile (module.js:577:32)
Oct 20 08:30:03 beaglebone npm[9518]: at Object.Module._extensions..js (module.js:586:10)
Oct 20 08:30:03 beaglebone npm[9518]: at Module.load (module.js:494:32)
Oct 20 08:30:03 beaglebone npm[9518]: at tryModuleLoad (module.js:453:12)
Oct 20 08:30:03 beaglebone npm[9518]: at Function.Module._load (module.js:445:3)
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! Linux 4.14.108-ti-r137
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "run" "start"
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! node v6.17.0
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! npm v3.10.10
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! code ELIFECYCLE
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! mcp@0.0.0 start: node ./bin/www
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! Exit status 1
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR!
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! Failed at the mcp@0.0.0 start script 'node ./bin/www'.
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! Make sure you have the latest version of node.js and npm installed.
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! If you do, this is most likely a problem with the mcp package,
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! not with npm itself.
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! Tell the author that this fails on your system:
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! node ./bin/www
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! You can get information on how to open an issue for this project with:
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! npm bugs mcp
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! Or if that isn't available, you can get their info via:
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! npm owner ls mcp
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! There is likely additional logging output above.
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! Please include the following file with any support request:
Oct 20 08:30:03 beaglebone npm[9518]: npm ERR! /var/lib/cloud9/BBB_WebApp/npm-debug.log
Oct 20 08:30:03 beaglebone systemd[1]: Start_MCP.service: Main process exited, code=exited, status=1/FAILURE
Oct 20 08:30:03 beaglebone systemd[1]: Start_MCP.service: Unit entered failed state.
Oct 20 08:30:03 beaglebone systemd[1]: Start_MCP.service: Failed with result 'exit-code'.


Was mache ich falsch ?
Warum läßt sich die App "händisch" starten aber bricht mit systemd nach ein paar Sekunden ab.
Warum wird Bonescript nicht gefunden ?

Vielen Dank für Eure Unterstützung.
Zuletzt geändert von ASbetebe am 27.04.2021 14:57:52, insgesamt 1-mal geändert.

ASbetebe
Beiträge: 15
Registriert: 14.11.2018 07:31:59

Re: Debian Stretch Autorun service Systemd

Beitrag von ASbetebe » 23.10.2020 07:15:11

Die Lösung:
Ich kann nicht erklären warum aber das erneute installieren von bonescript in dem Verzeichnis
...../BBB_WebApp$ npm install bonescript --save
hat geholfen.

Benutzeravatar
Blackbox
Beiträge: 4289
Registriert: 17.09.2008 17:01:20
Lizenz eigener Beiträge: GNU Free Documentation License

Re: Debian Stretch Autorun service Systemd

Beitrag von Blackbox » 23.10.2020 07:22:48

Eine "Lösung" die nicht auf erklärbaren Fakten - gespickt von Terminal-/Consolen-/Logfileauszügen - basiert, ist leider keine Lösung, sondern lediglich eine Vermutung und damit nicht hilfreich.
Es wäre trotzdem schön, wenn du diesen Thread als [erledigt] markieren könntest, indem du die Betreffzeile (vor dem Text) deines ersten Beitrags dieses Thread um diese die Phrase ergänzt.
Eigenbau PC: Debian Sid - Kernel: 6.5.13 - Xfce 4.18 mit sway
Desktop PC: Dell Inspiron 530 - Debian Sid - Kernel: 6.5.13 - Xfce 4.18 mit sway
Notebook: TUXEDO BU1406 - Debian Sid - Kernel: 6.5.13 - Xfce 4.18 mit sway
Alles Minimalinstallationen und ohne sudo/PA/PW.
Rootserver: Rocky Linux 9.3 - Kernel: 5.14

Freie Software unterstützen, Grundrechte stärken!

Antworten