how to overcome ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) permanently

前端 未结 14 1579
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-23 13:49

when am trying to open mysql in windows cmd by typing mysql. the following error is occuring.

ERROR 1045 (28000): Access denied for user ODBC@localhost (usin         


        
14条回答
  •  北海茫月
    2020-12-23 14:18

    Just create a file my.ini file in installation dir and have the below config as part of this file to solve this permanently.

    [mysql]
    user=root
    password=root
    

提交回复
热议问题