中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux環境 Mysql新建用戶和數據庫并授權

發布時間:2020-04-28 21:03:50 來源:網絡 閱讀:1974 作者:dnuser 欄目:MySQL數據庫

1.登錄mysql

#mysql -u root -p

2.新增用戶

insert into mysql.user(Host,User,Password) values("localhost","xxx",password("***"));

注釋:xxx為新建用戶名,***為用戶密碼

3.執行該句后,還需要刷新權限表

flush privileges;

4.新建數據庫并賦予用戶權限
create database dbtest;

全部授權:
允許本地登錄
grant all privileges on dbtest.* to xxx@localhost identified by "*";
允許任何主機登錄
grant all privileges on dbtest. to xxx@'%' identified by "
";
部分授權:
grant select,update on dbtest.* to xxx@localhost identified by "***";

5.賦予權限,還需要再刷新權限表

flush privileges;

6.通過sql語句查詢出新增結果

select user,host,password from mysql.user;

7.刪除用戶

delete from user where user=‘xxx’;
flush privileges;

8.刪除數據庫

drop database dbtest;

9.修改密碼

update mysql.user set password=password(‘新密碼’) where User='xxx' and Host='localhost';
flush privileges;

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高阳县| 浦城县| 屏东市| 休宁县| 绩溪县| 松原市| 银川市| 德令哈市| 焦作市| 隆林| 绍兴市| 社会| 三明市| 萨嘎县| 溧水县| 河池市| 牙克石市| 扶绥县| 昆明市| 扎赉特旗| 长沙县| 渑池县| 左贡县| 梓潼县| 勐海县| 延长县| 兴文县| 松潘县| 阿坝县| 华容县| 绍兴市| 宁晋县| 华坪县| 汉川市| 托克托县| 阳泉市| 米林县| 鹿邑县| 高台县| 普陀区| 彝良县|