mysql user with the name already exists. how to delete Print

  • 1

Please Rate us 
Solving an issue of

Extracting tarball................... Done
Extracting Domain....Done
Generating Account....

Account Creation Status: failed (Sorry, a mysql user with the name already exists.)


Account Restore Failed... Restore failed.

 

 

only use this code in ssh command

mysql> delete from mysql.user where user='USER';

Or

DROP USER 'USER'@'localhost';

Or

DROP USER USER;

 

Change USER with user name of mysql user

 

Was this answer helpful?

« Back