1、建立使用者:create user 'username' @ 'host' identfied by 'password';
username:使用者名稱;
host:指定在哪個主機上可以登入,本機可用localhost,%通配所有遠端主機;
password:使用者登入密碼;
2、授權:grant all privileges on *.* to `webuser` @ `%` identified by 'colonel';
格式:grant 許可權 on 資料庫名.表名 to 使用者@登入主機 identified by "使用者密碼";
*.* 代表所有權(匹配所有資料庫);
@ 後面是訪問mysql的***端ip位址(或是 主機名) % 代表任意的***端,如果填寫 localhost 為本地訪問(那此使用者就不能遠端訪問該mysql資料庫了)。
3、重新整理許可權:flush privileges;
oracle建新使用者
有時需要資料遷移建乙個新的不如直接建個新使用者,不用時把使用者刪掉 許可權一定要夠 create user zs identified bypassword zs為使用者名稱,passaw為mima grant create session tozs grant connect resource t...
SQL 建新使用者等
1 進入sysdba裡邊,輸入 conn as sysdba 2 建立使用者scott,口令是tiger,輸入 create user scott identified by tiger 3 給scott授權,輸入 grant connect,resource to scott 4 進入scott使...
Mysql建立新使用者
1.建立使用者 語法 create user username host identified by password 例子 create user dog localhost identified by 123456 create user pig 192.168.1.101 idendified...