View Single Post
  #30 (permalink)  
Old 05-16-2008, 10:04 AM
dijichi2 dijichi2 is offline
OpenSource Builder & Moderator
 
Posts: 1,166
Default

oh. sorry, my bad.

if you do:
ldd /opt/zimbra/zimbramon/lib/i486-linux-gnu-thread-multi/auto/DBD/mysql/mysql.so
you'll probably find a not found against libmysql. this is due to the very odd way zimbra builds and packages mysql. i fixed this for the 64bit build, but obviously forgot to for the 32bit build. will rectify for the next build. in the meantime, you can fix it like this:
cd /opt/zimbra/mysql/lib/mysql
tar cf /tmp/libmysql.tar libmysqlclient.so*
cd /opt/zimbra/mysql/lib
tar xf /tmp/libmysql.tar
cd /opt/zimbra/lib
tar xf /tmp/libmysql.tar

then fully stop and start zimbra.
Reply With Quote