“Klien MySQL tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql” Kode Jawaban

Klien tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql , sqlstate: 08004 ,

$ mysql -u root -p
Enter password: (enter your root password)

mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_new_password';
mysql> FLUSH PRIVILEGES;
mysql> quit
Naughty Narwhal

Klien tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql

# Run this line to unistall mysql and install mysql2
npm un mysql && npm i mysql2
# then switch the name of your import in your node file
#const mysql = require("mysql2");
#mysql2 uses the updated form of authentication
# To learn more read this stackoverflow answer: https://stackoverflow.com/a/56509065/13776398
Just Make It Global

Klien tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql

$ mysql -u root -p
Enter password: (enter your password)

mysql> ALTER USER 'root' IDENTIFIED WITH mysql_native_password BY 'PASSWORD';
mysql> FLUSH PRIVILEGES;
mysql> quit
liriosydelirios

Klien MySQL tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql

/* First run this */

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';


/* Where root as your user localhost as your URL and password as your password */

/* Then flush all prvilates */

flush privileges;
Henry Obiaraije

Jawaban yang mirip dengan “Klien MySQL tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql”

Pertanyaan yang mirip dengan “Klien MySQL tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql”

Lebih banyak jawaban terkait untuk “Klien MySQL tidak mendukung protokol otentikasi yang diminta oleh server; Pertimbangkan untuk memutakhirkan klien mysql” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya