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.