Tuesday 8 December 2015

download Kensho OVF Tool


Kensho OVF Tool was developed by Citrix to convert the disk format of a virtual machine from Hyper-V (vhd) or VMWare (vmdk).

It was hard to find a download link for this tool, so I decided to provide one.

Download Link

Thursday 15 October 2015

Chef Fix for ( WARNING: No knife configuration file found )

if the command (knife client list) fails with this error:

WARNING: No knife configuration file found
WARN: Failed to read the private key /etc/chef/client.pem: #

make sure you downloaded the chef-repo and configured knife.rb file which looks like this:

current_dir = File.dirname(__FILE__)
log_level :info
log_location STDOUT
node_name "admin"
client_key "#{current_dir}/admin.pem"
validation_client_name "org-validator"
validation_key "#{current_dir}/org-validator.pem"
chef_server_url "https://server_domain_or_IP/organizations/org"
syntax_check_cache_path "#{ENV['HOME']}/.chef/syntaxcache"
cookbook_path ["#{current_dir}/../cookbooks"]
 
 
also make sure you are at the chef-repo directory, running the command from another directory will give you the same error.

check this guide to learn how to setup and configure chef workstation :

https://www.digitalocean.com/community/tutorials/how-to-set-up-a-chef-12-configuration-management-system-on-ubuntu-14-04-servers


Tuesday 24 March 2015

MS Exchange mailbox quarantined Error

Problem : 

Delivery has failed to these recipients or groups:
User name (username@xyz.com)
Your message wasn't delivered because the recipient's mailbox is quarantined. If the problem continues, please contact your helpdesk.

The following organization rejected your message: mail.domain.com

Diagnostic information for administrators:
Generating server: mail.domain.com
Total retry attempts: 1
username@xyz.commail.domain.com
Remote Server returned '550 5.7.9 STOREDRV.Deliver; Recipient mailbox quarantined.; STOREDRV.Deliver.Exception:StorageTransientException.MapiExceptionMailboxQuarantined; Failed to process message due to a permanent exception with message Cannot open mailbox



Solution : 

this is caused by either user reaching maximum quota limit or it is could be due to exchange server running out of disk space.

In my case it was due to disk space on the server, I had to truncate mail databases logs and other logs created by exchange and also I had to change the quota limit for the user even though it was not reached yet , also rebooting the server will be required.