root@wirenboard-A2TSB4LR:~# systemctl status zigbee2mqtt
● zigbee2mqtt.service - zigbee2mqtt
Loaded: loaded (/etc/systemd/system/zigbee2mqtt.service; enabled; vendor preset: enabled)
Active: active (running) since Tue 2022-01-11 10:54:46 UTC; 29s ago
Main PID: 10212 (node)
CGroup: /system.slice/zigbee2mqtt.service
├─10212 npm
├─10259 /usr/bin/node /usr/lib/node_modules/npm/node_modules/update-notifier/check.js {“pkg”:{
├─10282 sh -c node index.js
└─10283 node index.js
Jan 11 10:54:46 wirenboard-A2TSB4LR systemd[1]: zigbee2mqtt.service: Unit entered failed state.
Jan 11 10:54:46 wirenboard-A2TSB4LR systemd[1]: zigbee2mqtt.service: Failed with result ‘exit-code’.
Jan 11 10:54:46 wirenboard-A2TSB4LR systemd[1]: zigbee2mqtt.service: Service hold-off time over, scheduli
Jan 11 10:54:46 wirenboard-A2TSB4LR systemd[1]: Stopped zigbee2mqtt.
Jan 11 10:54:46 wirenboard-A2TSB4LR systemd[1]: Started zigbee2mqtt.
Jan 11 10:55:11 wirenboard-A2TSB4LR npm[10212]: > zigbee2mqtt@1.18.1 start /mnt/data/root/zigbee2mqtt
Jan 11 10:55:11 wirenboard-A2TSB4LR npm[10212]: > node index.js
async function restart() {
await stop(indexJsRestart);
await start();
}
async function exit(code, reason) {
if (reason !== indexJsRestart) {
process.exit(code);
}
}
async function start() {
const version = engines.node;
if (!semver.satisfies(process.version, version)) {
console.log(\t\tZigbee2MQTT requires node version ${version}, you are running ${process.version}!\n); // eslint-disable-line
}
// Validate settings
const settings = require('./lib/util/settings');
const errors = settings.validate();
if (errors.length > 0) {
console.log(`\n\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!`);
console.log(' READ THIS CAREFULLY\n');
console.log(`Refusing to start because configuration is not valid, found the following errors:`);
for (const error of errors) {
console.log(`- ${error}`);
}
console.log(`\nIf you don't know how to solve this, read https://www.zigbee2mqtt.io/information/configuration.html`); // eslint-disable-line
console.log(`\n!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n`);
exit(1);
}
const Controller = require('./lib/controller');
controller = new Controller(restart, exit);
await controller.start();
}
async function stop(reason=null) {
await controller.stop(reason);
}
async function handleQuit() {
if (!stopping && controller) {
stopping = true;
await stop();
}
}
Last login: Wed Jan 12 08:44:32 2022 from 192.168.0.16
root@wirenboard-A2TSB4LR:~# npm install semver
npm WARN saveError ENOENT: no such file or directory, open ‘/mnt/data/root/package.json’
npm WARN enoent ENOENT: no such file or directory, open ‘/mnt/data/root/package.json’
npm WARN root No description
npm WARN root No repository field.
npm WARN root No README data
npm WARN root No license field.
semver@7.3.5
updated 1 package and audited 4 packages in 26.113s
found 0 vulnerabilities
semver@7.3.5
updated 1 package and audited 4 packages in 24.961s
found 0 vulnerabilities
root@wirenboard-A2TSB4LR:~# npm install semver
npm WARN root No description
npm WARN root No repository field.
npm WARN root No license field.
semver@7.3.5
updated 1 package and audited 3 packages in 32.686s
found 0 vulnerabilities
Системный журнал
12-01-2022 14:52:39.544
Started zigbee2mqtt.
12-01-2022 14:52:39.362
Stopped zigbee2mqtt.
12-01-2022 14:52:39.178
zigbee2mqtt.service: Service hold-off time over, scheduling restart.
12-01-2022 14:52:38.969
(node:23040) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
12-01-2022 14:52:38.740
(node:23040) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag --unhandled-rejections=strict (see Command-line API | Node.js v22.4.0 Documentation). (rejection id: 1)
12-01-2022 14:52:38.740
at Module.require (internal/modules/cjs/loader.js:903:19)
12-01-2022 14:52:38.740
at Function.Module._load (internal/modules/cjs/loader.js:724:14)
12-01-2022 14:52:38.740
at Module.load (internal/modules/cjs/loader.js:879:32)
12-01-2022 14:52:38.740
at Object.Module._extensions…js (internal/modules/cjs/loader.js:1035:10)
12-01-2022 14:52:38.740
at Module._compile (internal/modules/cjs/loader.js:1015:30)
12-01-2022 14:52:38.740
at Object. (/mnt/data/root/zigbee2mqtt/lib/util/utils.js:1:16)
12-01-2022 14:52:38.740
at require (internal/modules/cjs/helpers.js:74:18)
12-01-2022 14:52:38.740
at Module.require (internal/modules/cjs/loader.js:903:19)
12-01-2022 14:52:38.740
at Function.Module._load (internal/modules/cjs/loader.js:687:27)
12-01-2022 14:52:38.740
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:831:15)