Details
Product : Ensim Pro for Linux 4.0.4 for RHEL4 / CentOs.
Due to pam upgrade on the server, a package audit-libs gets installed. As the libraries for this package do not get propagated to the site fst, different operation on the server give errors libaudit library errors as below
error while loading shared libraries: libaudit.so.0: cannot open shared object file: No such file or directory.
The workaround is to create the executable file /etc/virtualhosting/filelists/siteinfo.custom.sh, with the contents:
#!/bin/bash
cat
echo "S,rpm:audit-libs"
exit 0
Make the file executable:
chmod +x /etc/virtualhosting/filelists/siteinfo.custom.sh
Then run the system through maintenance mode with the following commands:
set_pre_maintenance
set_maintenance
set_post_maintenance
service webppliance restart
|