- 論壇徽章:
- 0
|
回復(fù) #5 swh01 的帖子
從錯(cuò)誤上看就是mysql的權(quán)限問(wèn)題,用mysql的root用戶進(jìn)入到mysql的命令行提示符下;執(zhí)行下面命令:
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 63980
Server version: 5.0.67-community-log MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> GRANT ALL PRIVILEGES ON vpopmail.* TO 'vpopmail'@'Your Qmail IP' IDENTIFIED BY 'passwd';
Query OK, 0 rows affected (0.16 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.09 sec)
mysql> quit
藍(lán)色的為你輸入的,注意把IP地址換成你的IP
然后觀察一下看看還有沒(méi)有錯(cuò)誤出現(xiàn)。
[ 本帖最后由 zlj2208 于 2009-5-19 09:35 編輯 ] |
|