Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

phpMyAdmin을 사용하여 외부 서버에 연결

<시간/>

아래 코드 줄은 하단의 /etc/phpmyadmin/config.inc.php 파일에 추가할 수 있습니다. -

$i++;
$cfg['Servers'][$i]['host'] = 'HostName:port'; 
// hostname and port are provided if they are not default values
$cfg['Servers'][$i]['user'] = 'userName'; 
//user name for the remote server
$cfg['Servers'][$i]['password'] = 'Password'; 
//the password
$cfg['Servers'][$i]['auth_type'] = 'config';

"127.0.0.1" 및 $cfg['Servers'][$i]['host']와 함께 제공된 드롭다운과 함께 "현재 서버:"가 표시됩니다.

사용자는 두 서버 간에 전환할 수 있습니다.