openerp.cli.main() AttributeError: 'module' object has no attribute 'cli'

freebsd 下安装openerp之后, 设置了数据库和用户名, 然后报错:

Traceback (most recent call last):
  File "/usr/local/bin/openerp-server", line 5, in <module>
    openerp.cli.main()
AttributeError: 'module' object has no attribute 'cli'
/usr/local/etc/rc.d/openerpd: WARNING: failed to start openerpd

这到底是怎么回事

问题很明显, openerp没有一个叫做cli的子模块或者属性.

当然上述的错误你能看到, 很大程度上是将openerpd文件里的 comargs='>dev/null'  之类的输出重定向给去掉了, 不然openerp启动不了, 居然连一点错误消息都看不到.


后来进python命令行

import openerp
openerp
结果发现openerp是openerp-web的某个目录里的, 不是openerp-server的.


然后, 就去ports里将openerp-web给卸载掉. 再重新运行openerpd, 发现错误变成了

Shared object "libxml2.so.5" not found, required by "libxslt.so.2"

这个错误google上没什么好答案, 可能有的人会将 /usr/local/lib/libxml2.so.2 软链接到 /usr/local/lib/libxml2.so.5, 但是我没看到任何资料.

我后来重新安装了 libxml2, 发现没效果, 然后我又重新安装了 linxslt, 结果发现问题消失了.

/usr/ports/textproc/libxml2 #make deinstall
/usr/ports/textproc/libxml2 #make install
/usr/ports/textproc/libxslt #make deinstall
/usr/ports/textproc/libxslt #make install

完.

你可能感兴趣的:(openerp.cli.main() AttributeError: 'module' object has no attribute 'cli')