Daily Archives: September 5, 2009

No recognized SSL/TLS toolkit detected

While running Apache configure, if you get this error: No recognized SSL/TLS toolkit detected …do this: yum install -y openssl-devel # Required for Apache configure

Posted in Errors | 1 Comment

How To Add a MySQL Column with Index

ALTER TABLE mytable ADD mycolumn INT UNSIGNED NOT NULL AFTER othercolumn , ADD INDEX ( mycolumn );

Tagged | Leave a comment