[MySQL] phpMyAdmin 2.8.X 설치하기 (2006/06/26 수정)
로빈아빠
본문
www.phpmyadmin.net 에서 최신 파일을 다운로드 합니다.
phpMyAdmin - 2.8.1에서의 설치방법이 그 전 방식과 변경이 되었습니다.
phpMyAdmin-2.8.1.tar.gz 파일을 다운로드 후 웹페이지 기본 경로로 복사한후 압축을 풉니다.
※ 2.8.x 에서는 phpMyAdmin / libraries / config.default.php 수정
31라인 $cfg['PmaAbsoluteUri'] = '';
> $cfg['PmaAbsoluteUri'] = 'http://홈페이지/phpMyAdmin/';
57라인 $cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
> $cfg['Servers'][$i]['host'] = 'DB 접속IP 또는 localhost';
71라인 $cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method...
> $cfg['Servers'][$i]['auth_type'] = 'http';
72라인 $cfg['Servers'][$i]['user'] = 'root'; // MySQL user
> $cfg['Servers'][$i]['user'] = 'dbUser이름'; // dbUser이름을 입력합니다.
수정완료후 웹브라우저에서 http://홈페이지/phpMyAdmin/ 클릭 후
인증창에 접속 아이디 및 비밀번호 입력후 사용하시면 됩니다.
※ 2.6.x 이하 버전인 경우 phpMyAdmin / config.inc.php 또는 config.default.php 수정
$cfg['PmaAbsoluteUri'] = 'localhost url';
> $cfg['PmaAbsoluteUri'] = 'http://홈페이지/phpMyAdmin/';
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method ...
> $cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
> $cfg['Servers'][$i]['user'] = 'dbUser';
기타 참조사이트
1. http://blog.naver.com/jasmu?Redirect=Log&logNo=24639077
2. http://blog.naver.com/aram96?Redirect=Log&logNo=20009836326
3. http://kin.naver.com/knowhow/entry.php?eid=qLbKJODvUQmKXGB2WC8s+4VqNon1V6Ek
phpMyAdmin - 2.8.1에서의 설치방법이 그 전 방식과 변경이 되었습니다.
phpMyAdmin-2.8.1.tar.gz 파일을 다운로드 후 웹페이지 기본 경로로 복사한후 압축을 풉니다.
※ 2.8.x 에서는 phpMyAdmin / libraries / config.default.php 수정
31라인 $cfg['PmaAbsoluteUri'] = '';
> $cfg['PmaAbsoluteUri'] = 'http://홈페이지/phpMyAdmin/';
57라인 $cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
> $cfg['Servers'][$i]['host'] = 'DB 접속IP 또는 localhost';
71라인 $cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method...
> $cfg['Servers'][$i]['auth_type'] = 'http';
72라인 $cfg['Servers'][$i]['user'] = 'root'; // MySQL user
> $cfg['Servers'][$i]['user'] = 'dbUser이름'; // dbUser이름을 입력합니다.
수정완료후 웹브라우저에서 http://홈페이지/phpMyAdmin/ 클릭 후
인증창에 접속 아이디 및 비밀번호 입력후 사용하시면 됩니다.
※ 2.6.x 이하 버전인 경우 phpMyAdmin / config.inc.php 또는 config.default.php 수정
$cfg['PmaAbsoluteUri'] = 'localhost url';
> $cfg['PmaAbsoluteUri'] = 'http://홈페이지/phpMyAdmin/';
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method ...
> $cfg['Servers'][$i]['auth_type'] = 'http';
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
> $cfg['Servers'][$i]['user'] = 'dbUser';
기타 참조사이트
1. http://blog.naver.com/jasmu?Redirect=Log&logNo=24639077
2. http://blog.naver.com/aram96?Redirect=Log&logNo=20009836326
3. http://kin.naver.com/knowhow/entry.php?eid=qLbKJODvUQmKXGB2WC8s+4VqNon1V6Ek
관련링크
댓글목록
등록된 댓글이 없습니다.