[MYSQL]PHPMYADMIN 2.x버전 설치하기 / 고려할 점
(php 버전이 4.x 라면 phpmyadmin도 2.x 하위버전 사용해야함)
소스를 ftp로 업로드 하고 압축풀어 줍니다.
vi ./phpMyAdmin/libraries/config.inc.php
참고로, 어떤 버전의 경우 libraries 폴더 상위에 config.inc.php 가 존재하기도 한다
파일에서
$cfg['PmaAbsoluteUri'] = 'http://자신의도메인/phpMyAdmin';
$cfg['Servers'][$i]['auth_type'] = 'http'; // Authentication method (config, http or cookie based)? $cfg['Servers'][$i]['user'] = 'root'; // MySQL user
user는 root 대신에 해당 계정을 넣어도 됨
##################################################################
grant all on *.* to root@'localhost' identified by 'ehdus*' with grant option; flush privilegees;
|