php.ini 경로
/etc/php/7.0/apache2/php.ini
phpMyAdmin 설정 파일
설치 폴더에서 config.sample.inc.php -> config.inc.php로 복사
그 안에서
$cfg['blowfish_secret'] = '' 안에 임시 쿠키 암호를 넣어줘야한다.
https://www.question-defense.com/tools/phpmyadmin-blowfish-secret-generator
위 사이트로 들어가면 리프레쉬 할때마다 랜덤으로 생성해준다.
접속해서
Error 처리
The $cfg['TempDir'] (./tmp/) is not accessible. phpMyAdmin is not able to cache templates and will be slow because of this.
config.inc.php 를 열어서
$cfg['TempDir'] = '/tmp';
를 추가해준다.
그래도 연결이 안될경우
sudo chmod 777 /tmp 해주면 된다.
'Ubuntu > Server' 카테고리의 다른 글
adduser 와 useradd 의 차이 (0) | 2018.04.23 |
---|---|
Samba 설치하기 (0) | 2018.03.28 |