环境:ubuntu desktop8.04 mysql-server5.0 装好mysql5.0之后,mysql-client5.0也装了 $mysql -uroot -p 进入 mysql>grant all privileges on *.* to root@'%' identified by 'xxxxxxx'; 提示成功 mysql>grant all privileges on *.* to otheruser@'%' identified by 'xxxxxx'; 提示成功 mysql>exit $mysql -uotheruser -p ERROR 1045 (28000): Access denied for user 'zhiyiuser'@'localhost' (using password: YES) $mysql -...