Install LAMP on CentOS 6.5 y PHPMYADMIN
Install LAMP on CentOS 6.5 (Linux, Apache, MySQL,PHP) ================================ Update system ================================ yum update chkconfig --list chkconfig iptables off if enabled chkconfig ip6tables off if enabled chkconfig --list vi /etc/sysconfig/selinux if enabled change to disabled ================================= Install MySQL Server ================================= yum install mysql mysql-server chkconfig --levels 235 mysqld on service mysqld start mysql_secure_installation ================================== Install httpd server ================================== yum install httpd chkconfig --levels 235 httpd on service httpd start ================================== Install PHP ================================== yum install php /etc/init.d/httpd restart vi /var/www/html/info.php service httpd restart phpMyAdmin 4.5 Released. It is web-based client written in php for managing MySQL and MariaDB databases. It provides a user friendly web interface to access a...