use mysql;select host,user,password from user; grant all privileges on *.* to root@'%' identified by "root" with grant option;grant all privileges on *.* to root@'localhost' identified by "adminhongxin" with grant option;grant all priv…
一般情况下,mysql会默认提供多种存储引擎,可以通过下面的查看: 1)查看mysql是否安装了innodb插件.通过下面的命令结果可知,已经安装了innodb插件. mysql> show plugins; +------------+--------+----------------+---------+---------+ | Name | Status | Type | Library | License | +------------+--------+----------------…