Archive for June, 2009

Upload ISO files into XenServer 5.5

Sunday, June 28th, 2009

1) SCP the ISO files into the folder called /ISO or any folders that you like

2) symbol link it.
====
cd /var/opt/xen/iso_import
ln -s /opt/xensource/packages/iso/CentOS-5.3-i386-bin-DVD.iso .
====

3) rescan the ISO files folder.in order to have it appear under the XenServer Client Console

xe sr-create name-label=ISOs type=iso device-config:location=/var/opt/xen/iso_import device-config:legacy_mode=true content-type=iso

Done

Install PDO MySQL under CentOS 5.3

Saturday, June 27th, 2009

# yum install php-devel php-pear mysql-devel httpd-devel
# pecl install pdo
# PHP_PDO_SHARED=1 pecl install pdo_mysql

add php.ini

extension=pdo.so
extension=pdo_mysql.so

# apachectl restart

Enable HTTPS in Zimbra’s WebMail

Wednesday, June 24th, 2009

zmtlsctl https
tomcat stop
tomcat start

How to activate the Tomcat Engine

Saturday, June 20th, 2009

yum install tomcat5 tomcat5-jsp tomcat5-webapps -y

Update HyperVM’s port 8887 SSL

Saturday, June 20th, 2009

Update the program.pem & program.ca at

/usr/local/lxlabs/hypervm/etc

Upgrade PHP5 under CentOS 5.0

Tuesday, June 16th, 2009
wget http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
rpm -Uvh remi-release-5*.rpm epel-release-5*.rpm

yum --enablerepo=remi update php