manually drop user

  1. K

    Steps to DROP MYSQL users manually

    If you want to DROP MySQL users manually then you can check this article. Sometime we need to DROP users to resolve the issue then here is the solution: You can run below command to DROP user: mysql mysql -e "DROP user '$USER'@'$HOST';" In this command you have to replace $USER with your...
Top