Found the problem but it gaves me a lot of work to do :s
it was a miss typing error but here is a little guide if you guys got similar problems
the problem was that my mailbox can't start, so first i go to /var/log/zimbra.log
i found this:
syncmail:/opt/zimbra/openldap/bin # tail /var/log/zimbra.log
Apr 16 18:28:22 syncmail zmmailboxdmgr[15848]: start requested
Apr 16 18:28:22 syncmail zmmailboxdmgr[15848]: checking if another instance of manager is already running
Apr 16 18:28:22 syncmail zmmailboxdmgr[15848]: stale pid 10432 found in /opt/zimbra/log/zmmailboxd.pid: No such process
Apr 16 18:28:22 syncmail zmmailboxdmgr[15848]: assuming no other instance is running
Apr 16 18:28:22 syncmail zmmailboxdmgr[15849]: wrote manager pid 15849 to /opt/zimbra/log/zmmailboxd.pid
Apr 16 18:28:22 syncmail zmmailboxdmgr[15849]: manager started mailboxd/JVM with pid 15850
Apr 16 18:28:22 syncmail zmmailboxdmgr[15849]: manager woke up from wait on mailboxd/JVM with pid 15850
Apr 16 18:28:22 syncmail zmmailboxdmgr[15849]: manager started mailboxd/JVM with pid 15852
Apr 16 18:28:22 syncmail zmmailboxdmgr[15849]: manager woke up from wait on mailboxd/JVM with pid 15852
Apr 16 18:28:22 syncmail zmmailboxdmgr[15849]: mailboxd/JVM exited twice in 0 seconds (tolerance=60)
so as you can see JVM is not starting, what i do after is to check out: /opt/zimbra/log/zmmailboxd.out
here i found the error:
Unrecognized VM option 'SoftRefLRUPolicyMSPerlMB=1'
Could not create the Java virtual machine.
seems like i like to Perl something there, so what i did was as zimbra user:
zmlocalconfig -e mailboxd_java_options="-client -XX:NewRatio=2 -XX:MaxPermSize=128m -Djava.awt.headless=true -XX:SoftRefLRUPolicyMSPerMB=1 -XX:+UseParallelGC"
and look if i miss type anything else, after it, i zmcontrol stop/start
and all gets back
this cost me a little stress because i was lookin for the error:
Apr 16 18:20:54 syncmail zmmailboxdmgr[12764]: status requested
Apr 16 18:20:54 syncmail zmmailboxdmgr[12764]: stale pid 10432 found in /opt/zimbra/log/zmmailboxd.pid: No such process
Apr 16 18:20:54 syncmail zmmailboxdmgr[12764]: assuming no other instance is running
Apr 16 18:20:54 syncmail zmmailboxdmgr[12764]: no manager process is running
but not to the VM error, that's why i was lost :s i hope this thread helps someone else is a simple error but gives you a lot of work if you don't know what are you doing :s so good luck guys |