2014. 8. 25. 01:23

# phpMyAdmin Setting

1. http://www.phpmyadmin.net 에서 다운로드 및 압축해제

2. 압축해제후 phpmyadmin\config.sample.inc.php 파일을 복사후 config.inc.php로 이름 변경

3. 'config.inc.php'를 열어서 다음 항목 수정

$cfg['Servers'][$i]['AllowNotPassword'] = false -> true

4. libraries\config.default를 열어서 다음 항목 수정

$cfg['CheckConfigurationPermissions'] = true -> false

5. libraries\Config.class.php를 열어서 다음 항목 삭제

die(__('Wrong permissions on configuration file, should not be world writabled!');

6. phpmyadmin 접속후 id만 root 입력후 접속하여 로그인한다.

7. mysql DB선택 후 sql 선택

8. update user set user='root' where host='%';

   update user set password=password('password') where user='root';

   flush privileges;

9. 실행을 클릭하면 로그인 화면으로 간다.

10. 아이디와 비밀번호를 입력 후 재로그인을 한다.



' Study > 기타자료' 카테고리의 다른 글

Gaussian Random (정규 분포 랜덤 난수 발생 함수)  (0) 2014.09.30
FM radio mms 주소  (0) 2014.06.19
Windows 7,8 CMOS setting  (0) 2014.05.23
Eclips 설치 with Android SDK  (0) 2014.05.22
Embedded  (0) 2013.11.06
Posted by greenpresent