試験コード: | 1Z0-888 |
試験名称: | MySQL 5.7 Database Administrator |
認証ベンダー: | Oracle |
無料問題の数: | 40 |
バージョン: | v2019-10-20 |
等級: | |
ページの閲覧量: | 434 |
問題集の閲覧量: | 4568 |
テストを始める |
有効的な1Z0-888問題集はPasstest.jp提供され、1Z0-888試験に合格することに役に立ちます!Passtest.jpは今最新1Z0-888試験問題集を提供します。Passtest.jp 1Z0-888試験問題集はもう更新されました。ここで1Z0-888問題集のテストエンジンを手に入れます。
最新版のアクセス
「125問、30% ディスカウント、特別な割引コード:JPNshiken」
最新のコメント (最新のコメントはトップにあります。)
No.# Using SHA-256 Pluggable Authentication
To set up an account that uses the sha256_password plugin for SHA-256 password hashing, use the following statement, where password is the desired account password:
CREATE USER 'sha256user'@'localhost' IDENTIFIED WITH sha256_password BY 'password';
The server assigns the sha256_password plugin to the account and uses it to encrypt the password using SHA-256, storing those values in the plugin and authentication_string columns of the mysql.user system table.
The preceding instructions do not assume that sha256_password is the default authentication plugin. If sha256_password is the default authentication plugin, a simpler CREATE USER syntax can be used.
To start the server with the default authentication plugin set to sha256_password, put these lines in the server option file:
[mysqld]
default_authentication_plugin=sha256_password
That causes the sha256_password plugin to be used by default for new accounts. As a result, it is possible to create the account and set its password without naming the plugin explicitly:
CREATE USER 'sha256user'@'localhost' IDENTIFIED BY 'password';