Announcement

Collapse
No announcement yet.

fail to start services (or ad-hoc mode) after successful installation

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • fail to start services (or ad-hoc mode) after successful installation

    Can anyone suggest how can I solve this?


    C:\>"C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.exe"
    Working dir changed to APPDATA/Chaos Group/vray-swarm/work
    events.js:160
    throw er; // Unhandled 'error' event
    ^

    Error: listen EADDRINUSE :::24267
    at Object.exports._errnoException (util.js:1022:11)
    at exports._exceptionWithHostPort (util.js:1045:20)
    at Server._listen2 (net.js:1259:14)
    at listen (net.js:1295:10)
    at Server.listen (net.js:1391:5)
    at C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\@vraycloud\service-controller\lib\express.js:30:14
    at startExpress (C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\@vraycloud\service-controller\lib\express.js:19:9)
    at Object.getExpress (C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\@vraycloud\service-controller\lib\express.js:107:1
    at next (native)
    at onFulfilled (C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\co\index.js:65:19)
    at C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\co\index.js:54:5
    at Object.co (C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\co\index.js:50:10)
    at Object.createPromise [as getExpress] (C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\co\index.js:30:15)
    at Function.start (C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\@vraycloud\service-controller\lib\api-implementation.js:679:49)
    at next (native)
    at onFulfilled (C:\Program Files\Chaos Group\V-Ray\Swarm 1.4\swrm.nar\node_modules\co\index.js:65:19)

    C:\>

  • #2
    Looks like either SWARM is already running as a service, or something else is running on port 24267.

    To check in CMD if something is running on that port:


    To check if SWARM is running:

    Code:
    net start | find "V-Ray Swarm"
    If there is something - use the PID (last column) to find what:

    Code:
    netstat -ano | find "24267"
    Code:
    ​​​​​​​tasklist | find "PID"
    - where the PID is the one from the output above.
    Ivan Slavchev

    SysOps

    Chaos Group

    Comment

    Working...
    X