couchdb没有回复命令

时间:2015-08-20 22:56:21

标签: node.js couchdb

首先,在ubuntu上安装couchdb是一个很大的痛苦,但其中一种方式最终起作用(显然),但如果重要的话,我没有帐户。仍在运行。因此,我正在通过node.js正确的方式书,当我输入命令时,这就是我得到的。没有。 Apache CouchDB 1.6.1

static class adSearch
{
    public static string getADInfo(string userName, string requestedInfo)
    {
            DirectoryEntry AD = new DirectoryEntry();
            DirectorySearcher ADSearch = new DirectorySearcher(AD);

            AD.Username = (string)System.Security.Principal.WindowsIdentity.GetCurrent().Name;
            AD.Path = "LDAP://path";

            ADSearch.Filter = String.Format("SAMAccountName={0}", userName);
            ADSearch.PropertiesToLoad.Add(requestedInfo);

            SearchResult result = ADSearch.FindOne();
            return (string)result.Properties[requestedInfo][0];
    }
}

并且继承了该计划

(LogLevel=info) is starting.
Apache CouchDB has started. Time to relax.
[info] [<0.32.0>] Apache CouchDB has started on http://127.0.0.1:5984/
./dbcli.js
./dbcli.js GET books
curl http://127.0.0.:5984/

你可以看到香港专业教育学院尝试了一些没有运气的人。问题是什么?非常感谢

0 个答案:

没有答案