AIX

AIX

Connect with fellow AIX users and experts to gain knowledge, share insights, and solve problems.


#Power
#Power
 View Only
  • 1.  cannot start binary for AIX

    Posted Thu March 18, 2010 09:37 AM

    Originally posted by: ibm2ibm2ibm


    Hi

    what does this error mean in plain english?
    Howto fix?

    % start-sm.sh

    Services Manager: Starting...

    % exec(): 0509-036 Cannot load program ./bin/p_ctsce because of the following errors:
    rtld: 0712-001 Symbol __pthread was referenced
    from module p_ctsce(), but a runtime definition
    of the symbol was not found.
    #AIX-Forum


  • 2.  Re: cannot start binary for AIX

    Posted Thu March 18, 2010 10:28 AM

    Originally posted by: Kosala


    in simple terms you're missing a dynamically linked file by the program "./bin/p_ctsce" (this seems like a reference path to a executable). you can find out what library is missing by:

    $ ldd ./bin/p_ctsce

    if this command succeeds without any error, most probably your LIBPATH envar is messed up within the script. You can re-exmport the LIBPATH and retry.

    HTH,
    Kosala
    #AIX-Forum