Imap and mysql admin installed

I tried root with no password, still no luck.

I did not change anything in MySQL since DA was installed. In mysql.conf I see user da_admin with certain password, but even it shows error.
 
Have you tried logging into mysql via the command line? If it fails there too, you can try this to reset your passwords:
Code:
/etc/init.d/mysqld stop
/usr/bin/mysqld_safe --skip-grant-tables --skip-networking &
mysql -u root
use mysql;
UPDATE user SET password=PASSWORD("your password here") WHERE user="root";
exit
# kill all the mysql processes
/etc/init.d/mysqld stop
# Start MySQL again
/etc/init.d/mysqld start
 
I found the problem. As I changed host name, MySQL did not find correct pid file, so I renamed perviuosname.domain.tld.pid to domain.tld.pid and now everything works.

Thanks everybody for the help! :)
 
Back
Top