0

我安装了 couchDB 2.2,它在远程服务器 (ubuntu) 上运行。现在,我在另一台机器上安装了一个带有 NPM 模块 NANO 的节点应用程序。但是,当我尝试创建文档时出现错误。

 "Error getting existing document: {"message\": "Malformed AuthSession cookie. Please clear your cookies.\",\n  \"stack\": \"Error: Malformed AuthSession cookie. Please clear your cookies.\\n    at Request._callback (/opt/mobile/sprout/a/node_modules/nano/lib/nano.js:248:15)\\n    at Request.self.callback 


 400,    \"uri\": \"http://172.16.x.x:5984/activity-stream/_design/user-job\"\n  },\n  \"errid\": \"non_200\",\n  \"description\": \"couch returned 400\"\n}",

"Error inserting the new document: Malformed AuthSession cookie. Please clear your cookies."

你能告诉我如何解决这个问题。

4

1 回答 1

1

您正在尝试插入_design文档,为此,您需要拥有admin数据库的用户名和密码。据我记得,这样做的一种方法是修改 URL,例如:

http://username:password@172.16.x.x:5984/activity-stream/_design/user-job
于 2018-08-13T13:59:44.877 回答