I would like to ask for help, please. I am trying to start PyPlanet, but I get this error. I followed old topic here at forum about creating new profile, but it did not help.
Code: Select all
INFO [Main][pyplanet.core.management.commands.start] Initiated configuration and environment...
INFO [Main][pyplanet.core.management.commands.start] -------------------------------[ PyPlanet v0.7.1 ]-------------------------------
INFO [MainThread][pyplanet.god.process] Starting pool process for 'default'...
ERROR [default][pyplanet.core.instance] (1044, "Access denied for user ''@'localhost' to database 'the_server_db'")
Code: Select all
DATABASES = {
'default': {
'ENGINE': 'peewee_async.MySQLDatabase',
'NAME': 'the_server_db',
'OPTIONS': {
'host': 'localhost',
'user': 'new_user',
'password': '',
'charset': 'utf8mb4',
}
}
}