Software Development Kit (SDK) and API Discussions

SMIS issue

viralpatel
3,358 Views

cimuser -a -u test
./cimuser: error while loading shared libraries: libpegcliutils.so.1: cannot open shared object file: No such file or directory

 

does any one face this error?

i can add storage sytem in smis but not able to create user.

2 REPLIES 2

mbspark
3,121 Views

I ran into this issue and was able to fix it by adding the path of the library to the ld.so.conf file.

 

I found the library directory by the following command from root directory: 

"sudo find ./ | grep libpegcliutils.so.1"

/opt/netapp/pegasus/lib/libpegcliutils.so.1

 

Contents of ld.so.conf file:

include ld.so.conf.d/*.conf
/opt/netapp/pegasus/lib/

 

Then I ran "ldconfig" for the changes to take effect.

 

I also exported the path to the LD_LIBRARY_PATH variable

$   LD_LIBRARY_PATH=/opt/netapp/pegasus/lib/

$   export LD_LIBRARY_PATH

 

I hope this helps anyone that may have the same issue in the future. 

 

 

 

 

 

 

Nico_D
2,558 Views

yes but now i get this lovely error.

 

 ./cimuser
./cimuser: error while loading shared libraries: libstdc++.so.6: wrong ELF class: ELFCLASS64

 

 

Public