-3

Tried some commands with drop user but it dont work see picture.

enter image description here

Acivev
  • 7
  • 2
  • 2
    Which user you are logged on? Add code as text not as image – Jens Mar 02 '22 at 08:00
  • normaly with root – Acivev Mar 02 '22 at 08:02
  • It looks like a problem of user rights : see post https://stackoverflow.com/questions/56946299/how-to-resolve-error-1396-hy000-operation-alter-user-failed-for-rootlocal –  Mar 02 '22 at 08:02
  • Did you try to even google this before asking it here? Secondly, you are meant to type your questions rather than pasting screenshots. – nelsonsule Mar 02 '22 at 08:02
  • yes, i did but nothing found for it – Acivev Mar 02 '22 at 08:05
  • https://sebhastian.com/mysql-error-1396/#:~:text=The%20MySQL%20ERROR%201396%20occurs,from%20your%20MySQL%20database%20server. – Lkbhai Lr Mar 02 '22 at 08:08
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Mar 04 '22 at 14:05

1 Answers1

0

Revoke all Privileges first before to proceed to drop user

REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'bloguser'@'localhost';

DROP USER 'bloguser'@'localhost';

This was lifted from https://www.cyberciti.biz/faq/how-to-delete-remove-user-account-in-mysql-mariadb/

Always ensure you do a proper research before you come here to ask your questions

nelsonsule
  • 334
  • 2
  • 8