1樓:紅點兒絕緣體
要訪問一個mysql伺服器,你需要使用一個使用者帳號登入其中方可進行。建立或更新一個使用者涉及到了對使用者帳號所有屬性的管理。下面展示瞭如何在widnows xp professional 中建立和設定一個mysql5.
0使用者。
建立使用者:
命令:create user 'username'@'host' identified by 'password';
說明:username - 你將建立的使用者名稱, host -
指定該使用者在哪個主機上可以登陸,如果是本地使用者可用localhost, 如果想讓該使用者可以從任意遠端主機登陸,可以使用萬用字元%.
password - 該使用者的登陸密碼,密碼可以為空,如果為空則該使用者可以不需要密碼登陸伺服器. 例: create user 'dog'@'localhost' identified by '123456';
create user 'pig'@'192.168.1.101_' idendified by '123456';
create user 'pig'@'%' identified by '123456';
create user 'pig'@'%' identified by '';
create user 'pig'@'%';
2.授權:
命令:grant privileges on databasename.tablename to 'username'@'host'
說明: privileges - 使用者的操作許可權,如select , insert , update 等(詳細列表見該文最後 面).如果要授予所的許可權則使用all.
;databasename - 資料庫名,tablename-表名,如果要授予 該使用者對所有資料庫和表的相應操作許可權則可用*表示, 如*.*.
例: grant select, insert on test.user to 'pig'@'%';
grant all on *.* to 'pig'@'%';
注意:用以上命令授權的使用者不能給其它使用者授權,如果想讓該使用者可以授權,用以下命令:
grant privileges on databasename.tablename to 'username'@'host' with grant option;
3.設定與更改使用者密碼:
命令:set password for 'username'@'host' = password('newpassword');如果是當前登陸使用者用set password = password("newpassword");
例: set password for 'pig'@'%' = password("123456");
4.撤銷使用者許可權:
命令: revoke privilege on databasename.tablename from 'username'@'host';
說明: privilege, databasename, tablename - 同授權部分.
例: revoke select on *.* from 'pig'@'%';
注意: 假如你在給使用者'pig'@'%'授權的時候是這樣的(或類似的):grant select on test.
user to 'pig'@'%', 則在使用revoke select on *.* from 'pig'@'%';命令並不能撤銷該使用者對test資料庫中user表的select 操作.相反,如果授權使用的是grant select on *.
* to 'pig'@'%';則revoke select on test.user from 'pig'@'%';命令也不能撤銷該使用者對test資料庫中user表的select 許可權.
具體資訊可以用命令show grants for 'pig'@'%'; 檢視.
5.刪除使用者:
命令: drop user 'username'@'host';
2樓:匿名使用者
首先以root身份登入到mysql伺服器中。
$ mysql -u root -p
當驗證提示出現的時候,輸入mysql的root帳號的密碼。
建立一個mysql使用者
使用如下命令建立一個使用者名稱和密碼分別為"myuser"和"mypassword"的使用者。
mysql> create user 'myuser'@'localhost' identified by 'mypassword';
一旦使用者被建立後,包括加密的密碼、許可權和資源限制在內的所有帳號細節都會被儲存在一個名為user的表中,這個表則存在於mysql這個特殊的資料庫裡。
執行下列命令,驗證帳號是否建立成功
mysql> select host, user, password from mysql.user where user='myuser';
賦予mysql使用者許可權
一個新建的mysql使用者沒有任何訪問許可權,這就意味著你不能在mysql資料庫中進行任何操作。你得賦予使用者必要的許可權。以下是一些可用的許可權:
all: 所有可用的許可權
create: 建立庫、表和索引
lock_tables: 鎖定表
alter: 修改表
delete: 刪除表
insert: 插入表或列
select: 檢索表或列的資料
create_view: 建立檢視
show_databases: 列出資料庫
drop: 刪除庫、表和檢視
執行以下命令賦予"myuser"使用者特定許可權。
mysql> grant on .to 'myuser'@'localhost';
以上命令中,代表著用逗號分隔的許可權列表。如果你想要將許可權賦予任意資料庫(或表),那麼使用星號(*)來代替資料庫(或表)的名字。
例如,為所有資料庫/表賦予 create 和 insert 許可權:
mysql> grant create, insert on *.* to 'myuser'@'localhost';
驗證給使用者賦予的全許可權:
mysql> show grants for 'myuser'@'localhost';
將全部的許可權賦予所有資料庫/表:
mysql> grant all on *.* to 'myuser'@'localhost';
你也可以將使用者現有的許可權刪除。使用以下命令廢除"myuser"帳號的現有許可權:
mysql> revoke on .from 'myuser'@'localhost';
為使用者新增資源限制
在mysql中,你可以為單獨的使用者設定mysql的資源使用限制。可用的資源限制如下:
max_queries_per_hour: 允許的每小時最大請求數量
max_updates_per_hour: 允許的每小時最大更新數量
max_connections_per_hour: 允許的每小時最大連線(lctt譯註:其與 mysql全域性變數:
max_user_connections 共同決定使用者到資料庫的同時連線數量)數量
max_user_connections: 對伺服器的同時連線量
使用以下命令為"myuser"帳號增加一個資源限制:
mysql> grant usage on .to 'myuser'@'localhost' with ;
在 中你可以指定多個使用空格分隔開的資源限制。
例如,增加 maxqueriesperhour 和 maxconnectionsperhour 資源限制:
mysql> grant usage on *.* to 'myuser'@'localhost' with max_queries_per_hour 30 max_connections_per_hour 6;
驗證使用者的資源限制:
mysql> show grants for 'myuser'@'localhost;
建立和設定一個mysql使用者最後的一個重要步驟:
mysql> flush privileges;
如此一來更改便生效了。現在mysql使用者帳號就可以使用了。
mysql如何建立新使用者,例如建立一個sss 密碼為123的使用者
3樓:匿名使用者
1、登入:mysql -u root -p2、檢視現有使用者,select host,user,authentication_string from mysql.user;
3、新建使用者,create user "sss"@"host" identified by "123";
4、再次檢視使用者列表,可以看到sss使用者已建立,select host,user,authentication_string from mysql.user;
4樓:墨子宇
mysql新增使用者方法
建立資料庫gamesp
create database gamesp;
新增使用者
grant all on 資料庫名.* to 使用者名稱@localhost identified by '密碼';
grant all on gamesp.* to newuser@localhost identified by 'password';
新增一個遠端使用者,名為username密碼為password
grant all privileges on *.* to username@"%" identified by 'password'
說明:(1)grant all 賦予所有的許可權
(2)gamesp.* 資料庫 gamesp 中所有的表
(3)newuser 使用者名稱
(4)@localhost 在本地電腦上的 mysql server 伺服器
(5)identfified by 'password' 設定密碼
如何在命令列建立mysql資料庫
1,mysql uroot p x 登陸資料庫 2,show databases 檢視資料庫,例如要在test庫中建表 3,use test 進入test 4,create table users 例如要建立users表,下面是建立欄位 5,id int 10 unsigned not null a...
如何在mysql命令列內切換使用者
切換使用者 第一種方 法1 dos進入mysql安裝bin目錄下 cd c program files mysql mysql server 5.5 bin 2 輸專入 mysql 備註二屬 u root p db3 輸入使用者密碼 如何在 mysql 命令列bai內切換du使用者1 切換使用者 第...
centOS的linux如何在命令列中輸入中文
首先檢視是否安裝了中文語言支援元件 沒有的話安裝。再檢視環境變數 這個是英文的 這個是中文的 如果是英文的改一下配置檔案 在最後新增 儲存退出在終端輸入 source profile 你說的命令列模式輸入不了中文是不是3執行級別,xwindows圖形介面是5執行級別.在3執行級別,也就是系統標準執行...