Quiero comenzar a escribir consultas en MySQL.
show grants
muestra:
+--------------------------------------+
| Grants for @localhost |
+--------------------------------------+
| GRANT USAGE ON *.* TO ''@'localhost' |
+--------------------------------------+
No tengo ninguna identificación de usuario, pero cuando quiero hacer un usuario no tengo privilegios, ¡tampoco sé cómo hacer privilegios cuando ni siquiera tengo un usuario!
mysql> CREATE USER 'parsa'@'localhost' IDENTIFIED BY 'parsa';
ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER pr
ivilege(s) for this operation
Traté de iniciar sesión como root:
mysql> mysql -u root -p;
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 'mysql
-u root -p' at line 1
mysql> mysql -u root -p root;
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 'mysql
-u root -p root' at line 1
mysql -u root -p
. Entonces tendrá permisos completos en el servidor de la base de datos y podrá crear otros usuarios.
root
debería haber sido creado cuando instaló MySQL.