V12Patch26

SOLVED

I did all the steps for ADC posted here: https://online-help.sageerpx3.com/erp/12/public/getting-started_sage-x3-services-installation.html

But now my X3 is down, the Safe X3 Syracuse Server NODE0 wont start, error:

Windows could not start the Safe X3 Syracuse Server NODE0 on Local Computer: For more information review the system log.

The log shows:

The Safe X3 Syracuse Server NODE0 service terminated with the following service-specific error:
The handle is invalid.

Parents
  • 0

    I am having this issue now as well.    It started with a n error that was supposedly related to mongodb 
    (Respawn limit exceeded. Applications cannot be started)

     so i rebooted mongo and syracuse and... ya, now i am where you are.

    were you able to resolve the issue?

  • +1 in reply to bmyerspgh
    verified answer

    Ok, i was able to fix it on my side.  I saw another Sage City post regarding this or a similar issue.

    the changes to the nodelocal.js file can cause the Syracuse to break.    For me, it was changing the "auth".    I added ,"bearer" to mine, and when i removed that and restarted the service, it was fine.

    In Step 5 we are told to add bearer, like this

        auth: ["oauth2", "bearer"],


    but in the nodelocal.js file the format is:

            "auth": "basic"

    so i went with :

    "auth" : "basic","bearer", 

    and that appears to of not been an acceptable format.

Reply
  • +1 in reply to bmyerspgh
    verified answer

    Ok, i was able to fix it on my side.  I saw another Sage City post regarding this or a similar issue.

    the changes to the nodelocal.js file can cause the Syracuse to break.    For me, it was changing the "auth".    I added ,"bearer" to mine, and when i removed that and restarted the service, it was fine.

    In Step 5 we are told to add bearer, like this

        auth: ["oauth2", "bearer"],


    but in the nodelocal.js file the format is:

            "auth": "basic"

    so i went with :

    "auth" : "basic","bearer", 

    and that appears to of not been an acceptable format.

Children