cancel
Showing results for 
Search instead for 
Did you mean: 

Unix Client Error after install

Zak_Meekins_2
Level 6
Hey guys has anyone ever seen this before? I assume its due to a missing package, does anyone happen to know what package is missing?

 telnet localhost bpcd
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
bpcd: error while loading shared libraries: /usr/openv/lib/libnbmangle.so: cannot restore segment prot after reloc: Permission denied
Connection closed by foreign host.


Thanks in advance.

Zak
1 ACCEPTED SOLUTION

Accepted Solutions

Zak_Meekins_2
Level 6
This error is related to SELinix - to get this to work I ran the following commandes on the problematic host then restarted xinetd:

These are the commands to pass to SELinux

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

w00t

View solution in original post

1 REPLY 1

Zak_Meekins_2
Level 6
This error is related to SELinix - to get this to work I ran the following commandes on the problematic host then restarted xinetd:

These are the commands to pass to SELinux

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

w00t