Il 01/03/2016 21:40, Dominique ha scritto: > The database was exported to UTF8, but most of the tables where in > latin1. After reloading the original data I converted all tables to > UTF-8. No change. sogo.log still rejects the connection: > > 2016-03-01 21:08:46.694 sogod[9168] ERROR: could not open MySQL4 > connection to database 'sogo': Access denied for user > 'sogo'@'localhost' (using password: YES) > Mar 01 21:08:46 sogod [9168]: [ERROR] > <0x0x7f67af8d9b58[GCSChannelManager]> could not open channel > <MySQL4Channel[0x0x7f67afc190a8] connection=0x(null)> for > http://localhost/sogo/sogo_view >
The log is pretty explanatory. It says that the user sogo@localhost cannot access mysql using the specified password. You need to check the configuration and permissions. Are you really sure that doing: mysql -u user -h localhost --password=password database (replaing user with the database user, password with the user password and database with the sogo database) i.e. mysql -u sogo -h localhost --password=MySecretPassword123 sogo as specified in your connection string that should be mysql -u sogo -h localhost --password=sogo sogo works? if so check the credentials you have specified in the connection string corresponds. Alessandro -- [email protected] https://inverse.ca/sogo/lists
