As part of uncovering a new security improvement in MySQL 5.6 with the default installation being secured with a unique root MySQL password, the MySQL provided rpm’s installed the MySQL configuration file in /usr.
I feel this maybe a bug, however this is just as an explanation
for others to comment on.
The following steps reproduces this.
1. Launch a CentOS 6.4 AWS EC2 Instance
LOG=/tmp/create-instance.tmp.$$ INSTANCE_TYPE=m1.medium ec2-run-instances ami-eb6b0182 --instance-type ${INSTANCE_TYPE} --region us-east-1 --availability-zone us-east-1b --key db --group db | tee ${LOG} INSTANCE=`grep ^INSTANCE ${LOG} | awk '{print $2}'` ec2-describe-instances ${INSTANCE} | tee ${LOG} while [ `grep ^INSTANCE ${LOG} | awk '{print $6}'` != 'running' ] ; do cat ${LOG}; sleep 5; ec2-describe-instances ${INSTANCE} | tee ${LOG}; done …[Read more]