phpmyadmin 원격 연결 설정

1770 단어
phpmyadmin 원격 연결 설정
phpmyadmin으로 mysql 데이터베이스에 원격으로 연결하고 싶을 때, 일반적으로 phpmyadmin 폴더에 있는config를 설정합니다.inc.php(config.default.php, 직접 만들 수 없는 경우)
그리고 아래 코드를 일련의 수정을 할 거예요.
원래
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'xxx.xxx.xxx.xxx:xxxx';
$cfg['Servers'][$i]['user'] = 'xxxx';
$cfg['Servers'][$i]['password'] = 'xxxxxxxxx';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

다음으로 수정
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'oooo.oooo.oooo.oooo:oooo';
$cfg['Servers'][$i]['user'] = 'oooooo';
$cfg['Servers'][$i]['password'] = 'ooooooooo';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

만약 여기에 설정이 되어 있다면, 당신이 성공했다면, 그것은 내가 말하고자 하는 또 하나의 설정이 없는 항목이 있다는 것을 이미 알고 있다는 것을 의미한다. 당신은 이미 설정이 되었거나, 하지 않아도 된다. 구체적으로 다른 버전을 보아야 한다. 나의 버전은 3.5.1이다
중요한 건요.
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)

상황에 따라 수정을 해보겠습니다. 처음에 저는 쿠키였는데 나중에 config로 바꾸면 돼요. 제가 약해진 것 같아요.허허

좋은 웹페이지 즐겨찾기