View Single Post
  #6 (permalink)  
Old 09-09-2005, 03:07 PM
marcmac marcmac is offline
Zimbra Employee
 
Posts: 2,073
Default Fix for this problem

What you need to do is modify the innodb_thread_concurrency and max_connections prior to mysql installation.

You'll need to modify the install.sh script.

Before the line that runs "zmmyinit" (line 989, I think) you'll want to add these two lines (inside the conditional block):

runAsZimbra "zmlocalconfig -e mysql_innodb_thread_concurrency=50"
runAsZimbra "zmlocalconfig -e mysql_max_connections=50"

This will set the parameters prior to database creation.

Quote:
Originally Posted by webminster
How do I do this during running install.sh? How do I pre-change the configuration so it'll start the DB properly during the "initializing db" phase? The installation is corrupt since the database won't come up for initialization...
-Alan
Reply With Quote