我的“couchdb 外部进程”返回错误
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道问题所在......在教程中,它说要运行一个外部进程我必须像这样配置我的
local.ini
:有两种方法可以修复它:
1) 在配置
local.ini
中添加python
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:There are two ways you can fix it:
1) add
python
at the configlocal.ini
2) add
#!/usr/bin/python2.6
(I use Python 2.6) at the top of test.py