MySQL/権限
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
-[[MySQLのアクセス権限を設定:http://www.rfs.jp/server/mys...
*ユーザ作成 [#f4ca698d]
-[[MySQLでユーザを作成し、権限を設定する方法:https://proe...
-[[MySQLで新しいユーザーを作成して権限を付与する方法:http...
-特定DBに対して全ての操作ができるユーザを作成
grant all on somedb.* to somebody@localhost identified b...
-ユーザ一覧確認
select user, host from mysql.user;
**パスワードポリシー [#y4c5079d]
-[[MySQL5.7でCREATE USERするときのパスワードチェックを無...
-[[MySQLのパスワードポリシーを確認する:https://qiita.com/...
* 権限一覧 [#m8b10d4a]
| 権限 | Column | Context |h
| select | Select_priv | tables |
| insert | Insert_priv | tables |
| update | Update_priv | tables |
| delete | Delete_priv | tables |
| index | Index_priv | tables |
| alter | Alter_priv | tables |
| create | Create_priv | databases, tables/indexes |
| drop | Drop_priv | databases/ tables |
| grant | Grant_priv | databases/ tables |
| reload | Reload_priv | server administration |
| shutdown | Shutdown_priv | server administration |
| process | Process_priv | server administration |
| file | File_priv | file access on server |
-fileの権限を与えると、LOAD DATA INFILE と SELECT ... INT...
-一般のアプリケーション向け ... select,insert,update,dele...
終了行:
-[[MySQLのアクセス権限を設定:http://www.rfs.jp/server/mys...
*ユーザ作成 [#f4ca698d]
-[[MySQLでユーザを作成し、権限を設定する方法:https://proe...
-[[MySQLで新しいユーザーを作成して権限を付与する方法:http...
-特定DBに対して全ての操作ができるユーザを作成
grant all on somedb.* to somebody@localhost identified b...
-ユーザ一覧確認
select user, host from mysql.user;
**パスワードポリシー [#y4c5079d]
-[[MySQL5.7でCREATE USERするときのパスワードチェックを無...
-[[MySQLのパスワードポリシーを確認する:https://qiita.com/...
* 権限一覧 [#m8b10d4a]
| 権限 | Column | Context |h
| select | Select_priv | tables |
| insert | Insert_priv | tables |
| update | Update_priv | tables |
| delete | Delete_priv | tables |
| index | Index_priv | tables |
| alter | Alter_priv | tables |
| create | Create_priv | databases, tables/indexes |
| drop | Drop_priv | databases/ tables |
| grant | Grant_priv | databases/ tables |
| reload | Reload_priv | server administration |
| shutdown | Shutdown_priv | server administration |
| process | Process_priv | server administration |
| file | File_priv | file access on server |
-fileの権限を与えると、LOAD DATA INFILE と SELECT ... INT...
-一般のアプリケーション向け ... select,insert,update,dele...
ページ名: