Platform Specific

Admin Article

Article Information

This article applies to the following ZCS versions.

ZCS 6.0 Article ZCS 6.0 ZCS 5.0 Article ZCS 5.0 ZCS 4.5 Article ZCS 4.5

Virtual Machine

Red Hat

Zimbra 4.5 64bit requires installation of both i386 (32bit) and x86_64 versions of the compat-libstdc++-33 and compat-libstdc++-296 libraries.

Without the 32bit version you'll see an error like this from install.sh. Note the /usr/lib, not /usr/lib64:

/usr/lib/libstdc++.so.5...MISSING

You can check what architectures you have installed like this:

# rpm -qa --queryformat "%{name}.%{version}.%{arch}\n" |grep compat

To install compat-libstdc++33 for x86_64 with up2date:

# up2date --install compat-libstdc++-33 --arch=x86_64

Fedora

Fedora Core 5 x86_64

This is an install of zcs-4.5.0_RC2_566.RHEL4_64.tgz and also zcs-NETWORK-4.5.0_GA_612.RHEL4_64.tgz on FC5 x86_64. Is there a FC5 x86_64 build in the works? The RHEL4 version seems to work fine.

You need to have the following installed:

  • compat-db for zimbra-spell
  • openssl097a for zimbra-ldap
  • compat-libstdc++-296
  • compat-libstdc++-33 for kvfilter and imapsync - however, see "convertd" below

Below is the change required to make the installer happy with the prerequisites and to allow all services to start up. This is only tested on FC5. I've opened bug 13632 on the issue.

The script previously checked for FC5 so that it could use libstdc++.so.6 instead of libstdc++.so.5, but if you were on FC5_64, the check failed to match and you were left with an unresolved depenancie for libstdc++.so.5.

--- zcs.dist/util/utilfunc.sh   2007-01-15 20:58:18.000000000 -0800
+++ zcs/util/utilfunc.sh        2007-01-17 10:11:39.000000000 -0800
@@ -1207,10 +1207,13 @@
       PREREQ_LIBS="/usr/lib/libstdc++.so.5"
     elif [ $PLATFORM = "MANDRIVA2006" ]; then
       PREREQ_PACKAGES="sudo libidn11 curl fetchmail libgmp3 libxml2 libstdc++6 openssl"
-    elif [ $PLATFORM = "FC4" -o $PLATFORM = "FC5" -o $PLATFORM = "FC3" ]; then
-      PREREQ_PACKAGES="sudo libidn curl fetchmail gmp bind-libs vixie-cron"
-      if [ $PLATFORM = "FC5" ]; then
+    elif [ "`echo $PLATFORM | cut -c1-2`" = "FC" ]; then
+      PREREQ_PACKAGES="sudo libidn curl fetchmail gmp bind-libs vixie-cron compat-db compat-libstdc++-296 compat-libstdc++-33 openssl097a"
+      if [ "`echo $PLATFORM | cut -c1-3`" = "FC5" ]; then
         PREREQ_LIBS="/usr/lib/libstdc++.so.6"
+        if [ "`echo $PLATFORM | cut -d_ -f2`" = "64" ]; then
+          PREREQ_LIBS="$PREREQ_LIBS /usr/lib64/libstdc++.so.6"
+        fi
       else
         PREREQ_LIBS="/usr/lib/libstdc++.so.5"
       fi

convertd

I did not notice this problem with the Opensource Edition of 4.5RC2, but on an eval Network version 4.5GA, I guess that's because you can't search attachments in the Opensource version.

I'm seeing convertd crash and restart repeatedly while running imapsync. Here is the error:

2007-01-17 09:54:48,466 INFO  [Convertd-2] [] convert - Processing command 'x' from client on port 39220
2007-01-17 09:54:48,494 INFO  [Convertd-2] [] convert - Extracting text from image001.jpg.  docId=jazIjFJND+VI3MEYRHvxGreFNJw=_2
2007-01-17 09:54:48,515 FATAL [Convertd-2] [] system - Fatal error occurred while handling connection
java.lang.UnsatisfiedLinkError: /opt/zimbra/verity/FilterSDK/bin/libKeyViewFilter.so: /opt/zimbra/verity/FilterSDK/bin/libKeyViewFilter.so: wrong ELF class: ELFCLASS32
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1676)
        at java.lang.Runtime.loadLibrary0(Runtime.java:822)
        at java.lang.System.loadLibrary(System.java:993)
        at com.verity.api.filter.Filter.<clinit>(Unknown Source)
        at com.zimbra.cs.convertd.VerityEngine.extract(VerityEngine.java:239)
        at com.zimbra.cs.convertd.TransformationHandler.doTextExtraction(TransformationHandler.java:203)
        at com.zimbra.cs.convertd.TransformationHandler.processCommand(TransformationHandler.java:116)
        at com.zimbra.cs.tcpserver.ProtocolHandler.processConnection(ProtocolHandler.java:231)
        at com.zimbra.cs.tcpserver.ProtocolHandler.run(ProtocolHandler.java:198)
        at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Thread.java:595)
2007-01-17 09:54:49,695 INFO  [main] [] convert - Starting convertd
2007-01-17 09:54:49,760 INFO  [main] [] convert - convertd is ready

I'm seeing this error even with i386 and x86_64 versions of the compat libs.

[root@localhost log]# rpm --queryformat "%{name}.%{version}.%{arch}\n" -qa |grep compat
compat-libstdc++-296.2.96.i386
compat-db.4.2.52.i386
compat-libstdc++-33.3.2.3.x86_64
compat-db.4.2.52.x86_64
compat-libstdc++-33.3.2.3.i386

Fedora Core 6 x86

The Fedora Core 5 binaries will install on FC6 with a few kludges;

zimbra install.sh script will barf on libstdc++.so.6, so create a link:

# ln -s /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so.5 

Also, ldap at least is started via sudo from the setup.pl script, so you will need to edit the sudoers file with visudo to get rid of the requiretty line;

# Defaults    requiretty

Then the install script should *just work*

Actually, the better fix is to scroll up, grab that patch, and add FC6 where you see FC5. Symlink is not needed.

Fedora 7 x86

The Fedora 5 binaries will install on Fedora 7 using zimbra install.sh script without any error messages. The following command will say libcurl.so.3 is missing, which will stop MTA from starting:

# ldd /opt/zimbra/cyrus-sasl-2.1.22.3/sbin/saslauthd

If so, install the curl-dev package and create a soft link to the libcurl.so.4:

# yum install curl-devel
# ln -s /usr/lib/libcurl.so.4 /usr/lib/libcurl.so.3

Fedora 8

No binary download for FC8 yet, but there was a report that entries for syslog do not reside in /etc/syslog.conf rather /etc/rsyslog.conf.

Fedora 7 version of ZCS GA v5.0.5 (Community/Open Source edition) installs and runs great under a basic Fedora 8 install! The only caveat with the change to /etc/syslog.conf being renamed, simply using the command "ln -s /etc/rsyslog.conf /etc/syslog.conf" will fix the Zimbra syslog problem. This change will also fix other apps needing access to the old filename. (Hopefully the Fedora team will change the filename back or put in a symbolic link into the package installer for rsyslogd).

Without this subtle change, nothing will get logged under /var/log/zimbra.log.

After the change /etc/rsyslog restart will reflect the changes.

SuSE

General

If the mta won't start, make sure that the libraries are being found:

 postfix start

If you get errors like:

 /opt/zimbra/postfix-2.2.5/sbin/postsuper: error while loading shared libraries: libldap-2.2.so.7: cannot open shared object file: No such file or directory
 /opt/zimbra/postfix-2.2.5/sbin/postalias: error while loading shared libraries: libldap-2.2.so.7: cannot open shared object file: No such file or directory
 /opt/zimbra/postfix-2.2.5/sbin/postfix: error while loading shared libraries: libldap-2.2.so.7: cannot open shared object file: No such file or directory

Verify that /etc/ld.so.conf contains:

 /opt/zimbra/lib
 /opt/zimbra/sleepycat/lib
 /opt/zimbra/openldap/lib
 /opt/zimbra/cyrus-sasl/lib

then run ldconfig (as root).

SuSE ES9

OpenSuse 10

Debian

Debian 5 i386 - Zimbra 6

Install Debian 5

Install required packages

# aptitude install sudo libidn11 libpcre3 libexpat1 libstdc++5 sysstat

Edit the host file

# vi /etc/hosts
ip.add.re.ss       hostname.domain.tld      hostname

Download Zimbra 6

# wget http://.../zcs-6.0...DEBIAN5...tgz

Extract the archive

# tar xzf zcs-6.0...DEBIAN5...tgz

Install Zimbra 6

# ./install

Mac OS X

Mac OS X ships with Java (so Zimbra does not include it for Mac releases), but the default version - even if 1.5 is installed - is 1.4.

Check the default: ls -l /usr/bin/java.

Check whether 1.5 is installed here: /System/Library/Frameworks/JavaVM.framework/Versions/.

If not, download it from Apple. Once it's installed, you can specify the preferred order of the versions in the Java Application Settings of the Java Preferences utility found in /Applications/Utilities/Java/J2SE 5.0.

You can also make /usr/bin/java a symlink to /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Commands/java but this may break any apps using 1.4.

You can verify that java 1.5 is available to zimbra like this:

su - zimbra
java -version

Ubuntu

Ubuntu 10

Installation exits if it does not find libperl5.10. Add libperl-dev.

apt-get install libperl-dev

Ubuntu 8

Installation exits if it cannot find libltdl3. Add libperl-dev.

apt-get install libperl-dev


Keywords: compat , libraries , requirements , 64-bit, x86_64


Verified Against: unknown Date Created: 3/5/2006
Article ID: https://wiki.zimbra.com/index.php?title=Platform_Specific Date Modified: 2015-03-25



Try Zimbra

Try Zimbra Collaboration with a 60-day free trial.
Get it now »

Want to get involved?

You can contribute in the Community, Wiki, Code, or development of Zimlets.
Find out more. »

Looking for a Video?

Visit our YouTube channel to get the latest webinars, technology news, product overviews, and so much more.
Go to the YouTube channel »

Jump to: navigation, search