Por que o phpMyAdmin exibe um erro nesta configuração?

0

Tentando configurar o phpMyAdmin pela primeira vez com o MySQL.

Acabei de criar o script de configuração com o assistente da seguinte forma:

$i++;
$cfg['Servers'][$i]['host'] = 'http://server_name_here.edu';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['port'] = '10021';
$cfg['Servers'][$i]['socket'] = '/home/user7/mysql.sock';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'mypassword12345';
$cfg['Servers'][$i]['AllowDeny']['order'] = '';
$cfg['Servers'][$i]['AllowDeny']['rules'] = array();

Quando eu vou rodar a página principal do php admin, eu recebo o seguinte erro:

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server. Error

MySQL said: Documentation 2005 - Unknown MySQL server host 'http' (1)

Qualquer ponto na direção certa é muito útil.

Obrigado.

EDITAR

removeu o prefixo http: // do nome do servidor -

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server. Error

MySQL said: Documentation 2013 - Lost connection to MySQL server at 'waiting for initial communication packet', system error: 99

    
por Greg McNulty 15.06.2012 / 06:27

1 resposta

2

Remova http:// do nome do host do servidor. O MySQL não usa http para conexões.

O MySQL também usa a porta 3306 não 10021 .

    
por 15.06.2012 / 06:35