Re: Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Emmanuel klutse
Thx a lot I will look into it n revert On Sat, 2 Feb 2019 at 10:33 AM, Carsten Fuchs wrote: > Am 02.02.19 um 11:10 schrieb Emmanuel klutse: > > yes im talking about using "python manage.py migrate" command to create > tables in the db(djangoproject) i have already created in mysql server > > `ma

Re: Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Carsten Fuchs
Am 02.02.19 um 11:10 schrieb Emmanuel klutse: > yes im talking about using "python manage.py migrate" command to create > tables in the db(djangoproject) i have already created in mysql server `manage.py migrate` is trying to access your MySQL database, but the database denies the access to the

Re: Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Emmanuel klutse
yes im talking about using "python manage.py migrate" command to create tables in the db(djangoproject) i have already created in mysql server On Saturday, February 2, 2019 at 2:09:53 AM UTC-8, Emmanuel klutse wrote: > > > > On Saturday, February 2, 2019 at 1:47:39 AM UTC-8, Carsten Fuchs wrote:

Re: Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Emmanuel klutse
On Saturday, February 2, 2019 at 1:47:39 AM UTC-8, Carsten Fuchs wrote: > > Am 02.02.19 um 10:33 schrieb Emmanuel klutse: > > [...] creat a db for me in mysql instead of sqlite and the error is > talking about authentication. > > these are the changes made in my djangoproject/settings file: >

Re: Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Carsten Fuchs
Am 02.02.19 um 10:33 schrieb Emmanuel klutse: > [...] creat a db for me in mysql instead of sqlite and the error is talking > about authentication. > these are the changes made in my djangoproject/settings file: > DATABASES = { >     'default': { >     'ENGINE': 'django.db.backends.mysql', Yo

Re: Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Emmanuel klutse
hello Carsten Fuchs, thanks for your feedback. yes, i agree. but what i dont understand is that the command used "python manage.py migrate" is to creat a db for me in mysql instead of sqlite and the error is talking about authentication. these are the changes made in my djangoproject/settings fil

Re: Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Carsten Fuchs
Hi Emmanuel, the error message is clear, isn't it? (1045, "Access denied for user 'root'@'localhost' (using password: YES)") Check your password. Use the mysql client to check. Best regards, Carsten Am 02.02.19 um 10:07 schrieb Emmanuel klutse: > hello team, > Can someone help me with the prob

Unable to access mysql db and apply changes using "python manage.py migrate"

2019-02-02 Thread Emmanuel klutse
hello team, Can someone help me with the problem below please. (py1) C:\djangoproject>python manage.py migrate Traceback (most recent call last): File "C:\Users\Success\Envs\py1\lib\site-packages\django\db\backends\base\base.py", line 216, in ensure_connection self.connect() File "C:\Us