mysql -uroot -proot123456
進入mysql後輸入:
檢視目前有哪些資料庫存在:
mysql> show databases;
建立資料庫:create schema [資料庫名稱] default character set utf8 collate utf8_general_ci;
例子:mysql> create schema estuntest default character set utf8 collate utf8_general_ci;
query ok, 1 row affected (0.00 sec)
建立使用者:create user '[使用者名稱]'@'%' identified by '[使用者密碼]';
例子:mysql> create user 'test'@'%' identified by 'test123';
query ok, 0 rows affected (0.00 sec)
使用者授權資料庫:grant select,insert,update,delete,create on [資料庫名稱].* to [使用者名稱];
*代表整個資料庫.
例子:mysql> grant select,insert,update,delete,create on test.* to test;
query ok, 0 rows affected (0.00 sec)
Linux 下MySQL資料匯入
linux 下mysql資料匯入 採用load命令實現資料匯入 load data infile d jp contentmark outputfile url log2010 05 04.log into table mytest fields terminated by t enclosed b...
linux下建立使用者
root b etc useradd d home jc m jc root b etc passwd jc root b etc chown jc r home jc root b etc su jc 就ok拉 linux下建立使用者 一 linux下建立使用者 一 2008 04 02 18 0...
linux下建立使用者
linux下建立使用者 一 linux 系統是乙個多使用者多工的分時作業系統,任何乙個要使用系統資源的使用者,都必須首先向系統管理員申請乙個賬號,然後以這個賬號的身份進入系統。使用者的賬號一方面可以幫助系統管理員對使用系統的使用者進行跟蹤,並控制他們對系統資源的訪問 另一方面也可以幫助使用者組織檔案...