Server upgrades are complete, all systems are fully operational. Enjoy all the new features available in Zimbra 6!
Posts tagged with server
Our servers are down for upgrades to the 6.0 series of Zimbra.
Full operational status is expected within the hour.
Thank you
I recently had to rename a Windows server as part of a virtualization / server consolidation project. This server was part of a Samba controlled domain and I kept getting cryptic error messages, such as “access denied.”
Turns out no computer had ever likely been renamed in this domain, because it was missing the usermod command for renaming in the smb.conf.
To fix computer renaming in a samba ldap domain simply add:
rename user script = /usr/sbin/smbldap-usermod -r ‘%unew’ ‘%uold’
to your smb.conf
Which tells samba how to run the smbldap tools command for renaming a user/computer.
We would like to announce the availability of an online demo of Hosted Zimbra collaborative email services. This test drive is running the brand new version, 6.0 and is available at: http://www.zimbra.com/products/hosted_demo.php
You demo account with be prepopulated with sample e-mails, calendar events and contacts so you can hit the ground running with your e-mail account.
Your first e-mail in the account will have your username and password in it, so make sure to print it out for future reference.
As always you can always contact us with any questions or to sign up.
I just finished setting up two GLPI servers and had the same issue on both. After much slogging though google with very little help, I found mention of ownership issues (not to be confused with permissions issues). The glpi folder and all files and subfolders must be owned by the user and group the web server is running as. (Typically “nobody”, “www-data”, or “apache”.) It doesn’t matter even if you set your permissions chmod 777, the ownership is what makes the difference.
Assuming your httpd’s user/group is www-data here’s what you need to do: (Bold is a command, regular is the output, highlights are added for emphasis.)
htdocs # ls -l
total 2
drwxrwxrwx 15 root root 4096 Nov 30 06:04 glpi
-rw-r–r– 1 root root 44 Nov 20 15:22 index.html
htdocs# chown -R www-data:www-data glpi
htdocs # ls -l
total 2
drwxrwxrwx 15 www-data www-data 4096 Nov 30 06:04 glpi
-rw-r–r– 1 root root 44 Nov 20 15:22 index.html
This is something very simple but was not immediately obvious to me. I am setting up a Zabbix server as part of my consulting work and have many servers behind firewalls that need to use active checks. (Connect from server behind firewall/nat to the zabbix server, rather than have the zabbix server connect out to the monitored agents.) When you create the host set the name and dns name to the server’s name you put into the zabbix_agentd.conf file on the server you want to do active checks on. It will show up as unknown availability but that is erroneous.
Also, you need to create items with active checks. I recommend cloning a template and copying the items and triggers over. Then do a Mass Update and set all the items to “Zabbix Agent (Active)”