Linux Apache MySQL dan PHP adalah konfigurasi server yang sangat populer. Berikut kami sampaikan langkah-langkah instalasi Linux Apache MySQL dan PHP pada Linux Centos 6.4.

  1. Apache
    a. Install Apache:
    # yum install httpd

    b. Melakukan start Apache:
    # service httpd start

    c. Membuat Apache auto start saat booting:
    # chkconfig httpd on

  2. MySQL
    a. Install MySQL:
    # yum install mysql-server

    b. Start MySQL server:
    # service mysqld start

    c. Setting root password:
    # mysql_secure_installation

    d. Membuat MySQL auto start saat booting
    # chkconfig mysqld on

  3. PHP
    a. Install php dan koneksi ke mysql
    # yum install php php-mysql

    b. Melihat modul-modul lain php
    # yum search php-

    c. Restart Apache
    # service httpd restart

Referensi:
1. https://www.digitalocean.com/community/articles/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6.
2. http://www.howtoforge.com/perfect-server-centos-6.4-x86_64-apache2-dovecot-ispconfig-3-p4 .

Kunjungi www.proweb.co.id untuk menambah wawasan anda.

Instalasi LAMP (Linux Apache MySQL PHP) di Centos 6.4