麻烦帮我解释下如下命令 
grant replication slave,reload,super on *.* to [email protected] identified by 'slave';我不用命令在mysql administrator中添加一个用户给他grant权限是否起到相同效果?如果不能那再mysql administrator中怎么添加用户才能起到相同效果?

解决方案 »

  1.   

    创建mysql 的slave用户及密码replication slave
    REPLICATION SLAVE Needed for replication slaves (to read binary log events from the master) SUPER Enables use of CHANGE MASTER, KILL, PURGE MASTER LOGS, and SET GLOBAL statements, the mysqladmin debug command; allows you to connect (once) even if max_connections is reached RELOAD Enables use of FLUSH 直接执行此SQL即可
      

  2.   

    mysql administrator
    现在是 workbend 中可以通过图形界面实现的功能是相同的。
      

  3.   

    grant replication slave,reload,super on *.* to [email protected] identified by 'slave';
    授权   复制       载入     超级用户  在所有库  给 salve这个用户从192.168.91.128访问,用slave这个密码