Instalamos el servidor web(apache httpd) la forma más sencilla
yum groupinstall "Web Server"
Después el servidor mysql
yum groupinstall "MySQL Database"
Iniciamos los servicios
service httpd start
service mysqld start
Los configuramos si queremos que inicien automaticamente
chkconfig --level 345 httpd on
chkconfig --level 345 mysqld on
Y luego usamos este comando que nos ayuda a configurar mysql
mysql_secure_installation
Y voilá, con eso debería funcionar
*Nota: entrada actualizada de Fedora
