📌  相关文章
📜  SQLSTATE[HY000] [1698] 用户 'root'@'localhost' 的访问被拒绝(SQL: select * from information_schema.tables where table_schema = whatsapp and table_name = migrations and table_type = 'BASE TABLE') - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:15.954000             🧑  作者: Mango

代码示例1
$ sudo mysql -u root -p
Now you can add a new MySQL user with the username of your choice.

mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
And finally grant superuser privileges to the user you just created.

mysql> GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';

after that go and edit .env DB_USERNAME=newuser
DB_PASSWORD=password