[SOLVED][PyPlanet] Database access error
Posted: 30 Jun 2018, 10:49
Hi,
I'm trying to configure PyPlanet on one of my serverss. I followed the PyPlanet documentation (see http://pyplanet.readthedocs.io/en/lates ... ation.html). When I try to start the controller with
j'ai l'erreur suivante :
What surprises me, is that I don't need a pw to access my mysql, so I don't understand. Here is my basy.py DATABASES part:
If you have any idea, i'd be glad 
Thanks!
I'm trying to configure PyPlanet on one of my serverss. I followed the PyPlanet documentation (see http://pyplanet.readthedocs.io/en/lates ... ation.html). When I try to start the controller with
Code: Select all
./manage.py start
Code: Select all
peewee.InternalError: (1698, "Access denied for user 'me'@'localhost'")
Code: Select all
DATABASES = {
'default': {
'ENGINE': 'peewee_async.MySQLDatabase',
'NAME': 'ma_db',
'OPTIONS': {
'host': 'localhost',
'user': 'me',
'password': ' ',
'charset': 'utf8mb4',
}
}
}

Thanks!