Mysql
 sql >> Database >  >> RDS >> Mysql

Abilitare la password e l'autenticazione unix_socket per l'utente root di MariaDB?

Un modo affidabile e semplice sarebbe quello di creare un altro superutente e usarlo quando vuoi connetterti tramite password.

CREATE USER example@sqldat.com IDENTIFIED BY 'password';
GRANT ALL ON *.* TO example@sqldat.com WITH GRANT OPTION;
-- etc