Zimbra 9 build 2022...
 
Notifications
Clear all

Zimbra 9 build 20220207124901

9 Posts
2 Users
0 Likes
946 Views
(@joob77)
Joined: 3 years ago
Posts: 17
Topic starter  

Hi,

 

I'd like to download zcs-9.0.0_ZEXTRAS_20220209.UBUNTU20_64.20220207124901.

Is this still available, possible to download and where?

 

Many thanks in advance!

 

Grtz,

Joost Brenters

The Netherlands

This topic was modified 1 year ago by joob77

   
Quote
dominix
(@dominix)
Joined: 11 years ago
Posts: 129
 

You can i from  

wget download.zextras.com/zcs-9.0.0_OSE_UBUNTU20_latest-zextras.tgz


   
ReplyQuote
dominix
(@dominix)
Joined: 11 years ago
Posts: 129
 

as quite a lot of people require to have all the lastest version available, I have made a small script that keep everything in sync to the last version.

#! /bin/bash

for D in UBUNTU18 UBUNTU20 RHEL7 RHEL8;
do
    SZINT=$(curl -sI download.zextras.com/zcs-9.0.0_OSE_${D}_latest-zextras.tgz|tr -d '\015'|awk '/Content-Length/ {print $2}')
    SZLOC=$(ls -l zcs-9.0.0_OSE_${D}_latest-zextras.tgz|awk '{print $5}')
    echo "$D $SZINT $SZLOC"
    echo $(curl -sI download.zextras.com/zcs-9.0.0_OSE_${D}_latest-zextras.tgz|tr -d '\015'|awk '/Last-Modified/')
    [[ $SZINT == $SZLOC ]] || { mv -f --backup=numbered zcs-9.0.0_OSE_${D}_latest-zextras.tgz zcs-9.0.0_OSE_${D}_latest-zextras.tgz.old ; wget download.zextras.com/zcs-9.0.0_OSE_${D}_latest-zextras.tgz ; }
done
md5sum zcs-9*

   
ReplyQuote
dominix
(@dominix)
Joined: 11 years ago
Posts: 129
 

I mean, you can get the latest version from : 

wget download.zextras.com/zcs-9.0.0_OSE_UBUNTU20_latest-zextras.tgz

you should not use older version as it may be out of sync with zimbra repo and then fail to install.


   
ReplyQuote
(@joob77)
Joined: 3 years ago
Posts: 17
Topic starter  

@dominix; I want to use that specific version to migrate from Ubuntu 18 to 20. That is why I need the same version on source and destination server. And an update to a newer version on the source server fails…

 

grtz,

Joost


   
ReplyQuote
dominix
(@dominix)
Joined: 11 years ago
Posts: 129
 

my bet would be to fix the upgrade on the ubuntu18. What problem do you have when upgrading to the latest  Zimbra9 OSE ?


   
ReplyQuote
(@joob77)
Joined: 3 years ago
Posts: 17
Topic starter  

@dominix; I Will get back in this. What I can tell is that I got Java errors in the web interface and was unable to fix it. But I Will get back on this…

 

grtz,

Joost


   
ReplyQuote
dominix
(@dominix)
Joined: 11 years ago
Posts: 129

   
ReplyQuote
dominix
(@dominix)
Joined: 11 years ago
Posts: 129
 
You need to do the following steps as "Zimbra" user (sudo su zimbra):

execute

zmlocalconfig mailboxd_java_options
 copy every thing after "=" - e.g.:
mailboxd_java_options = -server -Dhttps.protocols=TLSv1.2,TLSv1.3 -Djdk.tls.client.protocols=TLSv1.2,TLSv1.3 -Djava.awt.headless=true -Dsun.net.inetaddr.ttl= -Dorg.apache.jasper.compiler.disablejsr199=true -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=1 -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=15 -XX:G1MaxNewSizePercent=45 -XX:-OmitStackTraceInFastThrow -verbose:gc -Xlogfile=/opt/zimbra/log/gc.logfilecount=20,filesize=10m -Djava.net.preferIPv4Stack=true
 

edit the configuration and add "--add-opens java.base/java.lang=ALL-UNNAMED" at the end.
It should look like
zmlocalconfig -e mailboxd_java_options="-server -Dhttps.protocols=TLSv1.2,TLSv1.3 -Djdk.tls.client.protocols=TLSv1.2,TLSv1.3 -Djava.awt.headless=true -Dsun.net.inetaddr.ttl=${networkaddress_cache_ttl} -Dorg.apache.jasper.compiler.disablejsr199=true -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=1 -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=15 -XX:G1MaxNewSizePercent=45 -XX:-OmitStackTraceInFastThrow -verbose:gc -Xlogfile=/opt/zimbra/log/gc.logfilecount=20,filesize=10m -Djava.net.preferIPv4Stack=true --add-opens java.base/java.lang=ALL-UNNAMED"

If you repeat step 1 you should see the --add-opens java.base/java.lang=ALL-UNNAMED

If so then restart zmmailboxd and you should be good to go.

   
ReplyQuote