मुझे भी इसी समस्या का सामना करना पड़ा।
समाधान जिसने मेरे लिए काम किया
Create
एक नया उपयोगकर्ताGrant
आपके डेटाबेस का यह नया उपयोगकर्ता विशेषाधिकार:
create user '<new_user_name>'@'localhost' identified by '<new_user_password>';
grant all privileges on <your_db_name>.* to '<new_user_name>'@'localhost' identified by '<new_user_password>';