...
Make sure your install folder is mapped to the system with the proper versions of files:
Code Block theme Emacs language bash lin-server01#df -h Filesystem Size Used Avail Use% Mounted on rootfs 19G 2.7G 15G 16% / udev 10M 0 10M 0% /dev tmpfs 397M 228K 397M 1% /run /dev/disk/by-uuid/8e0f19a8-a71f-4f2d-9b87-3a71431736d0 19G 2.7G 15G 16% / tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 1.1G 56K 1.1G 1% /run/shm /dev/mapper/lin--mon01--home-home 60G 2.7G 54G 5% /home //fileserver/server_files$ 200G 178G 23G 89% /home/vault/serverfiles lin-server01#ls -sl serverfiles/Installs/Zenoss/ | grep Product* 32 -rwxr-xr-x 0 root root 31424 Dec 7 2011 Products.LDAPMultiPlugins-1.14.tar.gz 124 -rwxr-xr-x 0 root root 126574 Dec 7 2011 Products.LDAPUserFolder-2.20.tar.gz
Copy the necessary files from the Zenoss Install folder to the root of the zenoss folder, change the permissions, su to zenoss:
Code Block theme Emacs language bash cp /home/vault/serverfiles/Installs/Zenoss/Zenpacks/4.2.3/LDAP* /home/zenoss chown zenoss:zenoss /home/zenoss/LDAP* su zenoss
Extract the files to the ZENHOME folder, move the useful folders to the root, and delete the garbage:
Code Block theme Emacs language bash tar xzf Products.LDAPUserFolder-2.12.tar.gztgz -C $ZENHOME/Products tar xzf Products.LDAPMultiPlugins-1.7.tar.gztgz -C $ZENHOME/Products cd $ZENHOME/Products mv Products.LDAPMultiPlugins/Products/LDAPMultiPlugins/ . mv Products.LDAPUserFolder/Products/LDAPUserFolder/ . rm -rf Products.LDAP*
restart zopectl:
Code Block theme Emacs language bash zopectl restart
...