My SQL no permite cambiar las opciones de usuario desde el Administrador.

Cuando MySQL no permite agregar nuevos host desde los cuales conectarse remotamente y ni siquiera muestra las opciones para modificar un usuario es porque no tiene creada la tabla de informacion de usuarios (user_info).
Se soluciona creando dicha tabla desde el Query Browser

DROP TABLE IF EXISTS `mysql`.`user_info`;
CREATE TABLE  `mysql`.`user_info` (  
`User` varchar(16) COLLATE utf8_bin NOT NULL,  
`Full_name` varchar(60) COLLATE utf8_bin DEFAULT NULL,  
`Description` varchar(255) COLLATE utf8_bin DEFAULT NULL,  
`Email` varchar(80) COLLATE utf8_bin DEFAULT NULL,  
`Contact_information` text COLLATE utf8_bin,  
`Icon` blob,  PRIMARY KEY (`User`),  
KEY `user_info_Full_name` (`Full_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin 
COMMENT='Stores additional user information';

y Listo Problema resuelto.

One thought on “My SQL no permite cambiar las opciones de usuario desde el Administrador.

  1. Oh my goodness! an amazing article dude. Thank you Nevertheless I am experiencing problem with ur rss . Don抰 know why Unable to subscribe to it. Is there anyone getting similar rss downside? Anyone who knows kindly respond. Thnkx

Leave a Reply