|
|
发表于 2005-9-8 08:59:36
|
显示全部楼层
barder:
我的mail.err文件一直在报错:
Sep 6 12:56:39 new postfix/trivial-rewrite[15925]: fatal: mysql:/etc/postfix/mysql-virtual_domains.cf(0,100): table lookup problem
对于这种问题要自己手工mysql命令验证,可以找到出错的根源.
- ark:/etc/postfix# mysql -u provider_admin -h 127.0.0.1 -p
- Enter password:
- Welcome to the MySQL monitor. Commands end with ; or \g.
- Your MySQL connection id is 25 to server version: 4.1.13a-Debian_3-log
- Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
- mysql> use provider
- Reading table information for completion of table and column names
- You can turn off this feature to get a quicker startup with -A
- Database changed
- mysql> select * from domains;
- +------------------+
- | domain |
- +------------------+
- | ark.femco.com.cn |
- | pearl.com.cn |
- +------------------+
- 2 rows in set (0.05 sec)
- mysql>
复制代码 |
|