Skip to content

Commit 86e732b

Browse files
implicit custom user
1 parent fb86575 commit 86e732b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/hypernode-platform/mysql/how-to-use-mysql-on-hypernode.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,12 @@ TABLE="core_url_rewrite"
196196
mysql "$DATABASE" -e "TRUNCATE TABLE $TABLE"
197197
```
198198

199-
## Changing the Authentication Plugin for a MySQL User
199+
## Changing the Authentication Plugin for a Custom MySQL User
200200

201201
Some MySQL features and upgrades require that users use a supported authentication plugin.
202202
For example, newer MySQL versions no longer support `mysql_native_password` by default.
203203

204-
To change the authentication plugin for an existing user to the recommended `caching_sha2_password` plugin, first log in to MySQL:
204+
To change the authentication plugin for an existing CUSTOM user to the recommended `caching_sha2_password` plugin, first log in to MySQL:
205205

206206
```bash
207207
mysql
@@ -219,8 +219,6 @@ For example, to update a custom user for all hosts:
219219
ALTER USER 'someuser'@'%' IDENTIFIED WITH caching_sha2_password BY 'new_secure_password';
220220
```
221221

222-
After changing the plugin, update your `.my.cnf` (or any other configuration files) to reflect the new password.
223-
224222
## Changing Your Password
225223

226224
How you change the database password depends on what version of MySQL you are running on your Hypernode.

0 commit comments

Comments
 (0)