Ver Mensaje Individual
  #12 (permalink)  
Antiguo 08/11/2012, 13:15
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 13 años, 8 meses
Puntos: 6
Respuesta: configurar acceso remoto a mysql

Deshabilite el firewall en Red Hat, CentOS, Oracle Linux

# service iptables save
# service iptables stop
# chkconfig iptables off

realizo el telnet
C:\>telnet 192.168.102.7 3306

y obtengo
4
5.0.95 Y%J%xOc#,!|o7dr/3Ou#I

porque desde phpMyadmin no me puedo conectar ?

esta es mi configuracion
Código PHP:
Ver original
  1. $i++;
  2. /* Authentication type */
  3. $cfg['Servers'][$i]['auth_type'] = 'cookie';
  4. /* Server parameters */
  5. $cfg['Servers'][$i]['host'] = '192.168.102.7';
  6. $cfg['Servers'][$i]['connect_type'] = 'tcp';
  7. $cfg['Servers'][$i]['port'] = '3306';
  8. $cfg['Servers'][$i]['socket'] = '/var/lib/mysql/mysql.sock';
  9. $cfg['Servers'][$i]['compress'] = false;
  10. /* Select mysqli if your server has it */
  11. $cfg['Servers'][$i]['extension'] = 'mysql';

Última edición por Montes28; 08/11/2012 a las 13:35