Category Archives: Servers

Linux : Zimbra backup return error ServiceException: system failure: exception during auth

Having this error with Zimbra backups? 2013-11-13 11:26:32,788 INFO [qtp1377413258-164433:https://0.0.0.0:7071/service/admin/soap/GetMailQueueInfoRequest] [name=user@domain.tld;mid=15;ip=0.0.0.0;ua=ZimbraWebClient – GC30 (Mac);] SoapEngine – handler exception com.zimbra.common.service.ServiceException: system failure: exception during auth {RemoteManager: mail.domain.tld->zimbra@mail.domain.tld:22} ExceptionId:qtp1377413258-164433:https://0.0.0.0:7071/service/admin/soap/GetMailQueueInfoRequest:1384359992787:2ad736ecb0b90e52 Code:service.FAILURE This might be caused by the Zimbra user cannot establish a loopback SSH connection to the server. Zimbra rely on the network interface IP to establish the… Read More »

Linux : Apache fail to start Invalid command ‘SSLEngine’

Get this error message while trying to start Apache? Invalid command ‘SSLEngine’, perhaps misspelled or defined by a module not included in the server configuration Make sure you are loading mod_SSL by having this statement in your configuration file (such as httpd.conf, ssl.conf, vhost.conf) : LoadModule ssl_module modules/mod_ssl.so

Windows : Complete certificate request denied with IIS8

I recently end up with the following error while completing a certificate request on Windows Server 2012 and IIS 8 : Execption from HRESULT: 0x8007005(E_ACCESSDENIED) The workaround I’ve found is to manually install the certificate. Follow theses steps to proceed with a manual SSL certificate installation : 1. Open the Microsoft Management Console (well known… Read More »

Linux : Cacti the image cache directory does not exist

Getting this error trying to use the real time graph usage with Cacti? The Image Cache Directory directory does not exist. Please first create it and set permissions and then attempt to open another realtime graph. OR : The Image Cache Directory is not writable. Please set permissions and then attempt to open another realtime… Read More »

Linux : Could not get shadow information for user

Having problems connecting to your server with SSH and get this error messages in the system logs? sshd[0000]: input_userauth_request: invalid user <user> sshd[0000]: error: Could not get shadow information for <user> sshd[0000]: Failed password for invalid user <user> from 0.0.0.0 port 00000 ssh2 This mean you are missing “UsePAM” directive and/or the directive is set… Read More »

Linux : How to reallocate swap into memory

Use the following script if you want to reallocate the content of your swap area back to RAM. Before doing this, make sure you have enough free memory. #!/bin/bash echo -e “\nOutput of free before:” free swapoff -a ; swapon -a echo -e “\nOutput of free after:” free echo “”