CouchDB installs fine for everything except execution of views on win7 x64

醉酒当歌 提交于 2019-12-05 18:03:57

What is the result of running http://localhost:5984/_utils/verify_install.html ?

This error usually happens when people install to a filesystem with ntfs 8.3 filename mangling disabled. Various "tune-up" and performance tools do this for you without understanding the consequences.

Easiest fix is to install to a directory without spaces, e.g. c:\couchdb.

The weird c:\cygwin... lines come up because when CouchDB is built & compiled, error messages are returned with filenames and line numbers present, relative to the build directory, not your future install directory.

Also, the couchdb mailing list is the best place to ask for support (I read it :-).

The noent error implies that a file is missing. Check to see if this file exists:

c:/Program Files (x86)/Apache Software Foundation/CouchDB/lib/couch-1.4.0/priv/couchspawnkillable

The install may be failing on your setup for some reason.

This is an issue with Erlang rather then CouchDB.

Erlang (bundle with CouchDB) is still using the 8.3 short filename format (possibly due to backward compatibility), but in newer version of Windows, the 8.3 name generation is disabled by default [read more here].

I would not recommend to enable the 8.3 filename to fix this (though it could), but rather install CouchDB directly under C:\<foldername> (without any spaces in the folder name).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!