Melanjutkan artikel sebelumnya yaitu instalasi LAMP (Linux Apache MySql dan PHP) baik dengan atau tanpa SSL, maka tutorial kali ini adalah menginstall phpMyAdmin di Centos 6.4. Program phpMyadmin adalah program yang dibuat dalam PHP yang berguna untuk manajemen database MySQL.
Berikut langkah-langkah instalasi phpMyAdmin di Centos 6.4
- Menambahkan Repository:
# wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm - Install phpMyAdmin:
# yum install phpmyadmin - Konfigrasi pada conf
# vi /etc/httpd/conf.d/phpMyAdmin.confPada konfigrasi ini, silahkan melakukan comment seperti contoh berikut ini:
Alias /phpMyAdmin /usr/share/phpMyAdmin
Alias /phpmyadmin /usr/share/phpMyAdmin#<Directory /usr/share/phpMyAdmin/>
# <IfModule mod_authz_core.c>
# # Apache 2.4
# <RequireAny>
# Require ip 127.0.0.1
# Require ip ::1
# </RequireAny>
# </IfModule>
# <IfModule !mod_authz_core.c>
# # Apache 2.2
# Order Deny,Allow
# Deny from All
# Allow from 127.0.0.1
# Allow from ::1
# </IfModule>
#</Directory> - Konfigurasi pada config.inc.php
# cd /usr/share/phpMyAdmin
# cp config.sample.inc.php config.inc.php
# vi config.inc.phpPada config.inc.php ini edit seperti berikut ini
$cfg[‘Servers’][$i][‘auth_type’] = ‘http’; - Restart Apache:
# service httpd restart - Silahkan masuk ke http://ip_anda/phpmyadmin/
Referensi:
1. http://www.howtoforge.com/perfect-server-centos-6.4-x86_64-apache2-dovecot-ispconfig-3-p3
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.