Previous Topic: SMP/E Environment Does Not Appear on the TreeNext Topic: Environment Profiles


SMP/E Environment Migration Fails at the SMP/E Environment Functions Step of the SMP/E Environment Migration Wizard

Symptom:

Migration of an SMP/E environment fails on the SMP/E Environment Functions step of the wizard, and I receive one of the following messages:

Reason:

CA CSM cannot load the shared object files (DLL), because the files do not have the required attributes. All of the files need the following attributes:

+p, +s, +r, +x

The libcci.so file also needs this attribute:

+a

Solution:

Check the SO files and DLL files for the correct attributes and privileges. Add the required attributes and privileges to files that are lacking them.

  1. Check the attributes and privileges of all the SO files and DLL files in the …/tomcat/lib directory using the command:
    ls -E  *.so *.dll
    

    Results similar to the following example appear:

    -rwxr-xr-x  aps-  1 USERID  GROUPID   233472 Aug 17  2010 libcci.so
    
  2. Fix attributes of shared object files using the command:
    extattr attribute filename
    

    For example, to add the +a attribute to the libcci.so file, type:

    extattr +a libcci.so
    
  3. Fix access privileges using the command:
    chmod attribute filename
    

    For example, to add the +r attribute to the libcci.so file, type:

    chmod +r libcci.so