You cannot see this page without javascript.

phpmyadmin 설정

APM 조회 수 775 추천 수 0 2013.12.27 19:17:56

1.  phpmyadmin 최신버전 다운로드  

    - www.phpmyadmin.net

 

2. 적당한 곳에 압축을 푼다

 

3. vi config.inc.php

    - $cfg['Servers'][$i]['auth_type'] = 'cookie'; --> http 로변경 (window 보안)

    -  $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
        $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
        $cfg['Servers'][$i]['relation'] = 'pma_relation';
        $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
        $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
        $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
        $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
        $cfg['Servers'][$i]['history'] = 'pma_history';
        $cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
        $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
        $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
        $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
        $cfg['Servers'][$i]['recent'] = 'pma_recent';
        위 항목 주석을 푼다

4. 에러 처리

  - The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click

 

  - pma 관련 테이블 및 계정을 추가해 준다

  - phpmyadmin 폴더에 포함된 sql로 되어있는 파일 실행시킨다

     -> mysql -uroot -ppassword <examples/create_tables.sql

  - 아래 스크립트를 실행한다  

     ->GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY 'password';
      ->GRANT SELECT, INSERT, UPDATE, DELETE ON phpmyadmin.* TO 'pma'@'localhost';

 

- phpmyadmin 재로그인으로 확인 !!

 

5. Alias로 phpmyadmin 경로 잡기

   - vi /etc/httpd/conf/httpd.conf

      아래 문구 추가

Alias /phpmyadmin /usr/local/phpmyadmin
<Directory /var/usr/local/phpmyadmin>
    AllowOverride All
    Options Indexes
    Order allow,deny
    Allow from all
</Directory> 

 

apahce 재시작

 

 

6. #2002 - The server is not responding (or the local MySQL server's socket is not correctly configured)

$cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock'; 

 

 

7.한글 언어팩

../phpmyadmin/locale/ko/LC_MESSAGES 에 이동

엮인글 :
List of Articles
번호 제목 글쓴이 날짜 조회 수sort
229 SoftWare 네트워크 블러그 LynX 2013-09-29 841
228 Windows Windows 10 재작 툴 file [21] LynX 2015-08-19 840
227 CentOS apm소스 [9] LynX 2015-05-29 835
226 Server 웹 동접자 수 확인 코드 LynX 2016-09-08 833
225 CentOS7 ▒ Doly의 CentOS7 강좌 9 3. CentOS시작, 종료, 둘러보기 -1 file [12] LynX 2014-10-23 812
224 Server 톰켓 설치 file LynX 2014-05-20 812
223 CentOS Grub UUID change LynX 2018-08-08 810
222 CentOS memchached [1] LynX 2016-04-21 808
221 Network HSRP 구성 file [20] LynX 2015-04-29 806
220 RoundCube 첨부 용량 변경 / 한글 수정 [10] LynX 2012-01-31 795
219 Programing PHP print LynX 2013-12-12 794
218 Linux 리눅스 기본 명령어 LynX 2014-07-16 792
217 OpenSolaris Open Solaris 에서 MariaDB 설치 [8] LynX 2014-12-30 784
» APM phpmyadmin 설정 LynX 2013-12-27 775
215 APM httpd.conf 정리 LynX 2013-12-27 770
214 HTML Tag Flowplayer [11] LynX 2013-07-20 768
213 HTML Tag JWPlayer 사용법 #1 시작 file [7] LynX 2013-06-25 762
212 Linux Centos 동영상플레이어 LynX 2014-06-29 755
211 Linux LFS/Preparation - 준비 LynX 2014-08-06 745
210 Linux 커널 컴파일 [10] LynX 2014-12-08 743

XE Login