backups

How do I resolve this NetBackup error during a client install – bpcd: error while loading shared libraries: /usr/openv/lib/libnbmangle.so: cannot restore segment prot after reloc: Permission denied?

If you encounter the following error:

bpcd: error while loading shared libraries: /usr/openv/lib/libnbmangle.so: cannot restore segment prot after reloc: Permission denied

When you try to telnet to the NetBackup bpcd port (13782) it is because SELinux is enabled.

To fix this problem, you need to run the following commands:

chcon -t textrel_shlib_t /usr/openv/lib/libnbmangle.so
chcon -t textrel_shlib_t /usr/openv/lib/libvxPBXCommon.so
chcon -t textrel_shlib_t /usr/openv/lib/libvxPBX.so
chcon -t textrel_shlib_t /usr/openv/lib/libvxPBXVxSS.so
chcon -t textrel_shlib_t /usr/openv/lib/libvxVxSSIOP.so
chcon -t textrel_shlib_t /usr/openv/lib/libnbservice.so

Run these commands as root then restart xinetd:

/etc/init.d/xinetd stop
/etc/init.d/xinetd start

Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

To Top