NEWS
[fixed]js-controller 0.714 installation funktioniert nicht
-
moin,
ich wollte heute morgen den js-controller über die Admin Seite updaten. Hallte leider nicht funktioniert! Danach habe ich auf Linux Ebene als Root
root@Test:~# cd /opt/iobroker
root@Test:/opt/iobroker# npm install iobroker.js-controller
nach der Installation
root@Test:/opt/iobroker iobroker start
kommt die Fehlermeldung
module.js:340 throw err; ^ Error: Cannot find module '/root/node_modules/iobroker.js-controller/iobroker.js' at Function.Module._resolveFilename (module.js:338:15) at Function.Module._load (module.js:280:25) at Function.Module.runMain (module.js:497:10) at startup (node.js:119:16) at node.js:935:3
was kann ich noch tun?
mfg
Arminhh
-
cd /opt/iobroker sudo pgrep -f '^io.*' | sudo xargs kill -KILL npm install iobroker.js-controller sudo iobroker start
-
Danke Bluefox für die Hilfe!
Sudo wird angemeckert weil ich als Root angemeldet bin
ohne sudo gekomme ich beim kill Befehl diese Fehlermeldung
root@Test:/opt/iobroker# pgrep -f '^io.*' | xargs kill -KILL kill: Ungültige Option -- K Usage: kill [options] <pid>[...] Options: <pid>[...] send signal to every <pid>listed -<signal>, -s, --signal <signal>specify the <signal>to be sent -l, --list=[<signal>] list all signal names, or convert one to a name -L, --table list all signal names in a nice table -h, --help display this help and exit -V, --version output version information and exit For more details see kill(1). root@Test:/opt/iobroker# pgrep -f '^io.*' | xargs kill -KILL kill: Ungültige Option -- K</signal></signal></signal></signal></pid></pid></pid>
Daraufhin habe ich auch direkt nach einem reboot versucht zu installieren. Gleiche Fehlermeldung wie weiter oben beschrieben!
-
Mich irritiert:
/root/node_modules/iobroker.js-controller/iobroker.js
Es muss doch /opt/iobroker sein.
und so was?
cd /opt/iobroker sudo chmod 777 * -R sudo pgrep -f '^io.*' | sudo xargs kill -9 sudo npm install iobroker.js-controller sudo ./iobroker start
Vor allem, was gibt "sudo npm install iobroker.js-controller" aus?
-
Danke für die Hilfe! Nach dem ich die Rechte gesetzt habe (chmod 777 * -R) hat es funktioniert!!
mfg
Arminhh