Hallo,
beim Starten erhalte ich folgenden Fehler:
Code
npm start
> be.bastelstu.wcf.nodePush@1.0.0 prestart /var/www/virtual/chris223/html/wcf/acp/be.bastelstu.wcf.nodePush
> npm install
npm WARN package.json be.bastelstu.wcf.nodePush@1.0.0 No repository field.
> be.bastelstu.wcf.nodePush@1.0.0 start /var/www/virtual/chris223/html/wcf/acp/be.bastelstu.wcf.nodePush
> NODE_ENV=production nodemon app.coffee
25 Jan 00:34:46 - [nodemon] v1.0.13
25 Jan 00:34:46 - [nodemon] to restart at any time, enter `rs`
25 Jan 00:34:46 - [nodemon] watching: *.*
25 Jan 00:34:46 - [nodemon] starting `coffee app.coffee`
nodePush (pid:32618)
====================
warning: Cannot load config: Error: ENOENT, no such file or directory '/var/www/virtual/chris223/html/wcf/acp/be.bastelstu.wcf.nodePush/config'
info: Inbound-Socket: /var/www/virtual/chris223/html/wcf/acp/be.bastelstu.wcf.nodePush/tmp/inbound.sock
info: Outbound-Socket: 0.0.0.0:9001
emergency: Failed when initializing inbound socket { code: 'EADDRINUSE', errno: 'EADDRINUSE', syscall: 'listen' }
25 Jan 00:34:46 - [nodemon] app crashed - waiting for file changes before starting...
Alles anzeigen
Ein Node Prozess läuft aber eigl. nicht im Hintergrund. Ich habe davor auch mal killall node ausgeführt, das gibt mir node: no process killed aus.
Meine config.js sieht so aus:
JavaScript
module.exports = {
outbound: {
useTCP: true,
port: 61671,
host: '0.0.0.0',
socket: __dirname + "/tmp/outbound.sock"
},
inbound: {
useTCP: false,
port: 9002,
host: '127.0.0.1',
socket: __dirname + "/tmp/inbound.sock"
},
user: 'nobody',
group: 'nogroup',
chroot: __dirname,
disableAutorestart: false// You want to set this to true, when you are not running nodemon
}
Alles anzeigen
Danke für die Hilfe