我的“couchdb 外部进程”返回错误

发布于 2024-11-03 11:32:01 字数 601 浏览 2 评论 0原文

我正在使用 couchdb 1.0.2,并且按照本教程创建外部进程...
与教程没有什么不同...(即使对于代码和文件夹结构)...

错误消息是

{"error":"{bad_return_value,{os_process_error,{exit_status,2}}}","reason":"{gen_server,call,\n            [<0.1116.0>,\n             {execute,{[{<<\"info\">>,\n              

在谷歌搜索时,我得到 这个,但错误不同,而且答案不能解决我的问题...
我正在使用 ubuntu 10.10 和 couchdb 1.0.2..这是导致错误的原因吗?

i'm using couchdb 1.0.2 and i'v following this tutorial to make an External Process...
nothing different with the tutorial... (even for the code and folder structure)...

the error message is

{"error":"{bad_return_value,{os_process_error,{exit_status,2}}}","reason":"{gen_server,call,\n            [<0.1116.0>,\n             {execute,{[{<<\"info\">>,\n              

while googling, i got this, but the error is different, and the answer not fix my problem...
i'm using ubuntu 10.10, and couchdb 1.0.2.. is this that caused the error??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

关于从前 2024-11-10 11:32:01

我知道问题所在......在教程中,它说要运行一个外部进程我必须像这样配置我的 local.ini

[external]

有两种方法可以修复它:

1) 在配置 local.ini 中添加 python

[external]  
test = python /usr/local/src/couchdb/test.py

2 ) 添加test.py 顶部的 #!/usr/bin/python2.6 (我使用 Python 2.6)

I know the problem..... in the tutorial, it says to run an external process I must configure my local.ini like this:

[external]

There are two ways you can fix it:

1) add python at the config local.ini

[external]  
test = python /usr/local/src/couchdb/test.py

2) add #!/usr/bin/python2.6 (I use Python 2.6) at the top of test.py

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文