1. phpMyAdmin 설치
http://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_phpMyAdmin_%EC%84%A4%EC%B9%98_(%EC%88%98%EB%8F%99)
http://www.phpmyadmin.net/ 접속
버전에 맞는 파일 다운로드
압축 풀기
#mv phpMyAdmin-4.0.90-all-languages phpMyAdmin
2. 아파치 수정
아파치 httpd.conf 수정
/etc/httpd/conf/httpd.conf 파일에서 DocumentRoot를 찾아 그 아랫줄에 Alias 행 추가
DocumentRoot "/var/www/html"
Alias /phpMyAdmin /var/www/phpMyAdmin/
아파치 재시작
3. 접속 테스트
웹으로 접속
http://도메인/phpMyAdmin
4. 설정 변경
config 폴더 생성
config 폴더[편집]
config 폴더를 만들고 읽기/쓰기 권한을 준다.
#mkdir config
#chmod o+rw config
이 작업을 하지 않으면 웹설정화면에서 "Cannot load or save configuration"라는 경고가 나온다.
5. DB 연동
http://도메인/phpMyAdmin/setup 으로 접속
자신의 DB서버에 맞게 기입
(Basic setting 탭) 서버 별칭, 주소, 포트 기입
(Authentication 탭) 아이디, 패스워드 기입
더 이상 자세한 설명을 생략
설정 파일 이동[편집]
화면 상단에 아래와 같은 메시지가 뜨면...
Configuration saved.
Configuration saved to file config/config.inc.php in phpMyAdmin top level directory, copy it to top level one and delete directory config to use it.
메시지에 있는 대로 config.inc.php 파일을 상위폴더로 옮기고 config 폴더는 삭제한다.
http://도메인/phpMyAdmin 접속하여 사용
'IT | Middleware > PHP' 카테고리의 다른 글
[APM 패턴 | PHP] Linux에 php5.4.35 설치 및 설정 (소스 파일을 이용한 설치) (2) | 2019.12.24 |
---|