sql

Create New User IN MySql

CREATE USER 'genita'@'%' IDENTIFIED BY 'genita';
GRANT ALL PRIVILEGES ON *.* TO 'genita'@'%' WITH GRANT OPTION;
flush privileges;

With this code sniped we allow the user with password to have access from all IP addresses.

Was this helpful?