在Ubuntu20.04中的mysql8.0中如何使用--default_authentication_plugin=mysql_native_password运行mysqld
时间: 2023-09-20 19:12:29 浏览: 267
在 Ubuntu 20.04 中安装 MySQL 8.0 后,可以使用以下命令来使用 `--default_authentication_plugin=mysql_native_password` 运行 `mysqld`:
```
sudo mysqld --default_authentication_plugin=mysql_native_password
```
如果你使用的是 systemd 来管理 MySQL 服务,可以在 `/etc/systemd/system/mysqld.service.d/mysqld.conf` 文件中添加以下内容:
```
[Service]
ExecStart=
ExecStart=/usr/sbin/mysqld --default_authentication_plugin=mysql_native_password
```
然后重新加载 systemd 配置并重启 MySQL 服务:
```
sudo systemctl daemon-reload
sudo systemctl restart mysqld
```
需要注意的是,在 MySQL 8.0 中,默认的认证插件是 `caching_sha2_password`,所以如果你使用 `--default_authentication_plugin=mysql_native_password` 参数启动 `mysqld`,则需要创建一个用户并指定其认证插件为 `mysql_native_password`。例如:
```
CREATE USER 'myuser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mypassword';
```
这将创建一个用户名为 `myuser`,密码为 `mypassword`,并使用 `mysql_native_password` 作为认证插件的用户。
阅读全文