controlla il manuale che corrisponde alla tua versione del server MySQL per la sintassi corretta da usare vicino a 'PASSWORD ("newpass")'

1

Uso la versione Mysql 8.0.12 e attualmente sto affrontando un problema e non riesco a risolverlo nemmeno con i riferimenti su Internet. Ho questo errore su phpmyadmin. Con sto usando High Sierra 10.13

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'PASSWORD("newpass")' at line 1

Hoprovatoquestocomandosulterminale

sudo/user/local/mysql/bin/mysql-uroot

poiinseritolamiapasswordepoi

usemysql;updateusersetauthentication_String=PASSWORD("newpass") where user='root';

poi provato anche questo

update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';

e infine questo

UPDATE user SET authentication_string=PASSWORD("newpass") WHERE User='root';

Ma mi hanno dato tutti lo stesso errore

Qualcuno potrebbe aiutarmi. Sono bloccato qui.

    
posta BoonMingProg 18.10.2018 - 12:12
fonte

1 risposta

1

La sintassi che stavi utilizzando era vicina. Dovrebbe essere:

USE mysql;
UPDATE user SET Password=PASSWORD('NEW-ROOT-PASSWORD') WHERE USER='root';

Tuttavia non è necessario modificare direttamente le tabelle mysql , piuttosto utilizzare i comandi dedicati:

SET PASSWORD FOR 'root'@'localhost' = 'NEW-ROOT-PASSWORD';

Nota che il manuale dice che la seguente sintassi è "preferita" senza suggerire perché potresti sceglierne una rispetto all'altra:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'NEW-ROOT-PASSWORD';
    
risposta data 16.11.2018 - 00:59
fonte

Leggi altre domande sui tag