要查找您的服务器的 MySQL 用户名和密码:
如果您在以下位置找不到 MySQL 用户名和密码:您的托管控制面板,您可以尝试使用命令行界面从数据库本身检索它们:
<code>mysql -u root -p database_name</code>
<code>SELECT User, Password FROM mysql.user WHERE user = 'database_user';</code>
要检查 MySQL 用户名和密码是否正确,请按照以下步骤操作步骤:
<code>mysql -u username -p password</code>
<code>Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 12345 Server version: 8.0.27-0ubuntu0.20.04.2 (Ubuntu)</code>
以上是如何知道mysql的用户名和密码的详细内容。更多信息请关注PHP中文网其他相关文章!