View Single Post
  #6 (permalink)  
Old 05-05-2008, 07:41 AM
webman webman is offline
Special Member
 
Posts: 167
Default

Quote:
Zimbra server reserving server socket port=7110 bindaddr=null ssl=false
Zimbra server reserving server socket port=7995 bindaddr=null ssl=true
Zimbra server reserving server socket port=7143 bindaddr=null ssl=false
Zimbra server reserving server socket port=7993 bindaddr=null ssl=true
Zimbra server reserving server socket port=7025 bindaddr=80.91.83.136 ssl=false
Fatal error: exception while binding to ports
java.net.BindException: Cannot assign requested address
It looks as if it it can't start because the ports it needs to use are already in use - perhaps another instance that didn't cleanly shutdown and close all threads; or another process is using the ports.

Run zmcontrol stop to stop all processes, check for and kill any leftover Zimbra threads and then zmcontrol start again.

According to this thread, this should kill all Zimbra processes:

Code:
kill -9 `ps -u zimbra -o "pid="`
Reply With Quote