CentOS 6.4 APM(Apache, Php, MySQL) 설치 # 2
http://rudejin.tistory.com/4 를 통해서 CentOS 6.4 에 APM 설치가 완료된 상태라면, 아래와 같이 phpMyAdmin 을 설치한다.
1. phpMyAdmin 설치
# rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
--64bit
# yum install -y http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
--32bit
# yum install -y http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
# yum install -y phpmyadmin
2. phpMyAdmin apache alias 적용
# vi /etc/httpd/conf.d/phpmyadmin.conf
Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin
3. phpMyAdmin 인증 변경(cookie 를 http 로 변경)
# vi /usr/share/phpmyadmin/config.inc.php
[중략]
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'http';
[중략]
4. 설치 확인
# /etc/init.d/httpd restart 후 PC 의 웹 브라우저를 통해서 아래 주소에 연결한다.
http://localhost/phpmyadmin/
인증 창이 뜨면 앞서 설정해주었던 mysql 아이디 , 패스워드로 로그인
'IT > Linux' 카테고리의 다른 글
리눅스 bash 쉘 컬러변경 [ Bash color ] (0) | 2015.01.17 |
---|---|
우분투(Ubuntu) 에서 GTK 설치 및 Hello world 출력 프로그램 작성 (0) | 2015.01.16 |
Nmap NSE Vulscan (1) | 2014.12.07 |
Kali linux 에서 postgresql DB 접속 (0) | 2014.12.04 |