Hmmm, I had a similar message after I messed around with the collation of tables in the OpenSim database, but there was more information at the console about it:
[LLOGIN SERVICE]: Exception processing login for FoTo50 CyberLife: MySql.Data.MySqlClient.MySqlException: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation \'=\'
at MySql.Data.MySqlClient.MySqlStream.OpenPacket () [0x00000]
at MySql.Data.MySqlClient.NativeDriver.ReadResult (System.UInt64& affectedRows, System.Int64& lastInsertId) [0x00000]
at MySql.Data.MySqlClient.MySqlDataReader.GetResultSet () [0x00000]
at MySql.Data.MySqlClient.MySqlDataReader.NextResult () [0x00000] at MySql.Data.MySqlClient.MySqlStream.OpenPacket () [0x00000]
at MySql.Data.MySqlClient.NativeDriver.ReadResult (System.UInt64& affectedRows, System.Int64& lastInsertId) [0x00000]
at MySql.Data.MySqlClient.MySqlDataReader.GetResultSet () [0x00000]
at MySql.Data.MySqlClient.MySqlDataReader.NextResult () [0x00000]
Are you sure there is nothing else written in the console?
Did the component write a proper line into the table \"auth\"? Specially the fields \'UUID\', \'passwordHash\' and \'passwordSalt\' should be filled up with some strings similar to:
mysql> SELECT UUID,passwordHash,passwordSalt FROM auth;
+-------------------------------+--------------------------------+--------------------------------+
|UUID |passwordHash |passwordSalt |
+-------------------------------+--------------------------------+--------------------------------+
|b7705de4-cb3e-11df-ba63-00e0...|947be50574c0b9ba9efc68d48596d90e|098f6bcd4621d373cade4e832627b4f6|
+-------------------------------+--------------------------------+--------------------------------+
1 row in set (0.00 sec)
... where UUID should have the same value like the field \'PrincipalID\' in the table \'UserAccounts\' for the user \'test test\'.
Greetz
FoTo50