mysql 使用者建立、授權、刪除。密碼修改

來源:互聯網
上載者:User



本操作是在WIN命令提示字元下,phpMyAdmin同樣適用。
    使用者:phplamp  使用者資料庫:phplampDB



//登入MYSQL
@>mysql -u root -p
@>密碼
//建立使用者
mysql> insert into mysql.user(Host,User,Password) values("localhost","phplamp",password("1234"));
//重新整理系統許可權表
mysql>flush privileges;
這樣就建立了一個名為:phplamp  密碼為:1234  的使用者。

然後登入一下。

mysql>exit;
@>mysql -u phplamp -p
@>輸入密碼
mysql>登入成功



如果你想允許使用者myuser從ip為192.168.1.6的主機串連到mysql伺服器,並使用mypassword作為密碼

 

GRANTALL PRIVILEGES ON *.* TO 'myuser'@'192.168.1.3' IDENTIFIED BY 'mypassword' WITHGRANT OPTION;

 

FLUSH   PRIVILEGES;


@>mysql -u root -p
@>密碼
mysql>DELETE FROM user WHERE User="phplamp" and Host="localhost";
mysql>flush privileges;
//刪除使用者的資料庫
mysql>drop database phplampDB;


@>mysql -u root -p
@>密碼
mysql>update mysql.user set password=password('新密碼') where User="phplamp" and Host="localhost";
mysql>flush privileges;

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.