From what I see, Configuration is a singleton. MysqlDB has a reference to a Configuration, so there is an association between the two classes. Now, we ask: is a Configuration a part of a MysqlDB? This seems to be the case, so the association could be an aggregation. On the other hand, a Configuration can be shared, so it is not just a part of a MysqlDB. Therefore the association is not an aggregation. It is not composition either, since the lifetime of a Configuration object is not tied to its MysqlDB object. (Anyway, composition is a stronger form of aggregation.)
DatabaseManager does not store any references, so there is no association between DatabaseManager and either MysqlDB or Configuration. However, DatabaseManager depends on Configuration and MysqlDB.