상세 컨텐츠

본문 제목

phpMyAdmin 설치시 자주쓰는 경고문 해결

Bitnami/phpMyAdmin

by History+Young 2017. 7. 9. 07:08

본문

The configuration file now needs a secret passphrase (blowfish_secret)
이제 설정 파일은 암호화 문자열(blowfish_scret) 을 필요로 합니다.


이건 config.inc.php파일이 없어서 발생한다.

phpMyAdmin 루트폴더에 있는 config.sample.inc.php 파일을 이용하거나

libraries 폴더에 있는 config.default.php 파일을 이용해서 만들면 된다

하지만!! 이렇게 해도 ~~ 뜨는 경우가 있는데 

이때는 config.inc.php 파일에 한 줄 추가하라.


$cfg['blowfish_secret'] ='cookie';

mysql, mariadb 설치하면 

information_schema, mysql, performance_schema 같은 기본 DB 생기는데 


$cfg['Servers'][$i]['hide_db'] = 'information_schema|mysql|performance_schema';


추가하거나 수정하라


설정값의 | 표시는 여러개의 DB 보이지 않도록 할 때 구분자로 사용한다.



PMA 관련 추가 확장기능 경고 및 권고 메세지가 뜨는데 

"phpMyAdmin 설정 스토리지가 완전히 설정되지 않아, 일부 확장 기능들이 비활성화 상태입니다

원인을 확인하려면 여기를 클릭하세요. "

아래와 같이 수정한다. 기본값은 false


$cfg['PmaNoRelation_DisableWarning'] = true;

이외에도 여러 설정값들은 아래 phpMyAdmin 제공 문서페이지를 방문하여 확인하라.

Configuration — phpMyAdmin 4.7.0-dev documentation 


퍼온글 http://www.softore.co.kr/index.php?document_srl=1041&mid=SoftoreBlog

관련글 더보기