11-01-2012, 07:11 PM
Xammp on linux sucks, simple install the modules manually, using yum.
#installing mysql
$yum install mysql mysql-server mysql-devel mysql-libs php-mysql
#installing Apache
$yum install httpd php
#Creating a mysql password
$mysqladmin -uroot password "newPassword"
#adding Apache and mysql at startup
$chkconfig --add httpd
$chkconfig httpd on
$chkconfig --add mysqld
$chkconfig mysqld on
#starting Services
$service httpd start
$service mysqld start
Or much simple:
$yum groupinstall "MySQL Database"
$yum groupinstall "Web Server"

