1. 程式人生 > >本機 Mysql資料庫 做伺服器,

本機 Mysql資料庫 做伺服器,

!!!!兩臺機器必須能 ping 通

本地Mysql做伺服器,供其他機器訪問

    此例子用的資料庫名為 high

   分配high 下所有的表 最高許可權給 ip 為212.194.47.2 下的使用者,使用者名稱為 you, 密碼為you,

grant all privileges on high.* to 'you'@'212.196.47.2' identified by 'you';

   grant all privileges  分配 最高許可權(可讀,可寫)

   high.*        high 下所有表(若要指定單張表,如 high 下的 demo 表, 則 high.* 應該為 high.demo)

  收回許可權

revoke all on high.* from 'you'@'212.194.47.2';