當前位置:首頁 » 操作系統 » linuxmysql用戶刪除用戶

linuxmysql用戶刪除用戶

發布時間: 2022-06-01 11:32:43

A. mysql 用drop和delete方法刪除用戶的區別

(方法一)drop user 用戶名;
語法:drop user 用戶名;
作用:刪除已經存在的用戶,例如要刪除yan這個用戶,(drop user yan;)默認刪除的是yan@"%"這個用戶,如果還有其他用戶,例如yan@"localhost",yan@"ip",則不會一起被刪除。如果只存在一個用戶yan@"localhost",使用語句(drop user yan;)會報錯,應該用(drop user yan@"localhost";)如果不能確定(用戶名@機器名)中的機器名,可以在mysql中的user表中進行查找,user列對應的是用戶名,host列對應的是機器名。
(方法二)delete from user where user="用戶名" and host="localhost";
delete也是刪除用戶的方法,例如要刪除yan@"localhost"用戶,則可以(delete from user where user="yan" and host="localhost";)

註:drop刪除掉的用戶不僅將user表中的數據刪除,還會刪除諸如db和其他許可權表的內容。而(方法二)只是刪除了user表的內容,其他表不會被刪除,後期如果命名一個和已刪除用戶相同的名字,許可權就會被繼承。

B. MySQL創建用戶和刪除用戶詭異的問題

嘗試了可以刪除,查詢一下該用戶是否還存在。

C. linux下怎樣刪除mysql資料庫用戶密碼

刪除用戶
@>mysql -u root -p
@>密碼
mysql>Delete FROM user Where User='test' and Host='localhost';
mysql>flush privileges;
mysql>drop database testDB; //刪除用戶的資料庫
刪除賬戶及許可權:>drop user 用戶名@'%';
>drop user 用戶名@ localhost;
這個是用戶結構額
用戶都有這些
用戶名
主機

D. MySQL如何查看,刪除用戶

1.查看所有用戶(需要在root用戶下進行)
select host,user,password from mysql.user;

2.刪除用戶
mysql>Delete FROM user Where User='用戶名' and Host='上圖有個host列表所示';//刪除用戶
例:mysql>Delete FROM user Where User='yl' and Host='localhost';
mysql>flush privileges; //刷新許可權
mysql>drop database ylDB; //刪除用戶的資料庫

E. 怎麼刪除mysql用戶

1.查看所有用戶(需要在root用戶下進行)
select
host,user,password
from
mysql.user;
2.刪除用戶
mysql>delete
from
user
where
user='用戶名'
and
host='上圖有個host列表所示';//刪除用戶
例:mysql>delete
from
user
where
user='yl'
and
host='localhost';
mysql>flush
privileges;
//刷新許可權
mysql>drop
database
yldb;
//刪除用戶的資料庫

F. mysql linux 管理員表添加的多餘用戶怎麼刪除

deletefromuserwhereuser!='root';
flushprivileges;

G. 如何刪除mysql的root用戶

1、登錄到mysql
mysql -u username -ppasswd

2、登錄成功後選擇資料庫mysql
use mysql

3、在user表中刪除root用戶信息
delete from user where User='root';

H. mysql怎麼在linux下,刪除用戶

下載mysql 5 的技術手冊,上面有很詳盡的關於在linux下的操作。
http://doc.mysql.cn/mysql5/2006/1027/5545.html

I. mysql如何刪除一個自己創建了的用戶

不用那麼麻煩,你在資料庫的【安全性】里找到用戶,直接點刪除,就可以了。

J. mysql資料庫關於創建和刪除用戶的問題

1.新建用戶
登錄MYSQL:
@>mysql -u root -p
@>密碼
創建用戶:
mysql> insert into mysql.user(Host,User,Password) values("localhost","test",password("1234"));
這樣就創建了一個名為:test 密碼為:1234 的用戶。
注意:此處的"localhost",是指該用戶只能在本地登錄,不能在另外一台機器上遠程登錄。如果想遠程登錄的話,將"localhost"改為"%",表示在任何一台電腦上都可以登錄。也可以指定某台機器可以遠程登錄。
然後登錄一下:
mysql>exit;
@>mysql -u test -p
@>輸入密碼
mysql>登錄成功
2.為用戶授權
授權格式:grant 許可權 on 資料庫.* to 用戶名@登錄主機 identified by "密碼";
登錄MYSQL(有ROOT許可權),這里以ROOT身份登錄:
@>mysql -u root -p
@>密碼
首先為用戶創建一個資料庫(testDB):
mysql>create database testDB;
授權test用戶擁有testDB資料庫的所有許可權(某個資料庫的所有許可權):
mysql>grant all privileges on testDB.* to test@localhost identified by '1234';
mysql>flush privileges;//刷新系統許可權表
格式:grant 許可權 on 資料庫.* to 用戶名@登錄主機 identified by "密碼";
如果想指定部分許可權給一用戶,可以這樣來寫:
mysql>grant select,update on testDB.* to test@localhost identified by '1234';
mysql>flush privileges; //刷新系統許可權表
授權test用戶擁有所有資料庫的某些許可權:
mysql>grant select,delete,update,create,drop on *.* to test@"%" identified by "1234";
//test用戶對所有資料庫都有select,delete,update,create,drop 許可權。
//@"%" 表示對所有非本地主機授權,不包括localhost。(localhost地址設為127.0.0.1,如果設為真實的本地地址,不知道是否可以,沒有驗證。)
//對localhost授權:加上一句grant all privileges on testDB.* to test@localhost identified by '1234';即可。
3.刪除用戶
@>mysql -u root -p
@>密碼
mysql>Delete FROM user Where User='test' and Host='localhost';
mysql>flush privileges;
mysql>drop database testDB; //刪除用戶的資料庫
刪除賬戶及許可權:>drop user 用戶名@'%';
>drop user 用戶名@ localhost;
4.修改指定用戶密碼
@>mysql -u root -p
@>密碼
mysql>update mysql.user set password=password('新密碼') where User="test" and Host="localhost";
mysql>flush privileges;
5.列出所有資料庫
mysql>show databases;
6.切換資料庫
mysql>use '資料庫名';
7.列出所有表
mysql>show tables;
8.顯示數據表結構
mysql>describe 表名;
9.刪除資料庫和數據表
mysql>drop database 資料庫名;
mysql>drop table 數據表名;

熱點內容
2019速騰買什麼配置好 發布:2025-01-11 01:35:07 瀏覽:828
博越存儲異常 發布:2025-01-11 01:24:31 瀏覽:917
我的世界還原中國伺服器版圖 發布:2025-01-11 01:18:45 瀏覽:383
pythonopenasfile 發布:2025-01-11 01:17:06 瀏覽:973
hbasejavaapi 發布:2025-01-11 01:11:09 瀏覽:747
我的世界pe版飢餓伺服器 發布:2025-01-11 01:09:39 瀏覽:485
異構資料庫數據同步 發布:2025-01-11 01:09:04 瀏覽:957
c語言三角波 發布:2025-01-11 01:02:11 瀏覽:78
php正則轉義 發布:2025-01-11 01:00:03 瀏覽:691
手拉的箱包上的密碼鎖一般是多少 發布:2025-01-11 00:59:55 瀏覽:8