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로 바꾸면 돼요. 제가 약해진 것 같아요.허허
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.