1

私のMac 10.9.2では、ソファベースサーバーをインストールし、それを実行しhttp://127.0.0.1:8091 ています.beer-sampleを含むデフォルトのバケットがあります

同期サーバーを次のように起動しました

./sync_gateway -bucket="beer-sample" 

コンソールに次のように記録します

14:00:55.903306 ==== Couchbase Sync Gateway/0.94 ====
14:00:55.979850 Configured Go to use all 2 CPUs; setenv GOMAXPROCS to override this
14:00:55.979985 Configured MaxFileDescriptors (RLIMIT_NOFILE) to 5000
14:00:56.005329 Opening db /beer-sample as bucket "beer-sample", pool "default", server <walrus:>
14:00:56.019242 Opening Walrus database beer-sample on <walrus:>
14:00:56.057276 Using default sync function 'channel(doc.channels)' for database "beer-sample"
14:00:56.057549 Starting profile server on 
14:00:56.057680 Starting admin server on 127.0.0.1:4985
14:00:56.090556 Starting server on :4984 ...

アンドロイドでは、私の複製コードは次のようになります

Replication pullReplication = database.createPullReplication("http://10.0.2.2:4984");
pullReplication.start();

次に、シミュレータでAndroidアプリを実行し、changeEventListenerのようにエラーを記録しました

        if (!replication.isRunning()){
            Log.d(TAG, "Replication is not running due to " + replication.getLastError().getMessage());
            Log.d(TAG, "Replication is not running due to " + replication.getLastError().getCause());
            Log.d(TAG, "Replication is not running due to " + replication.getLastError().getStackTrace());
            Log.d(TAG, "Replication is not running due to " + replication.getLastError().toString());
        }

ログを記録した

04-04 14:04:18.402    1622-1644/com.couchbase.replicationsample.replicationsample D/HelloWorld﹕ Replication: Puller[http://10.0.2.2:4984] changed.
04-04 14:04:18.432    1622-1644/com.couchbase.replicationsample.replicationsample D/HelloWorld﹕ Replication is not running due to HTTP/1.1 404 Not Found
04-04 14:04:18.454    1622-1644/com.couchbase.replicationsample.replicationsample D/HelloWorld﹕ Replication is not running due to null
04-04 14:04:18.502    1622-1644/com.couchbase.replicationsample.replicationsample D/HelloWorld﹕ Replication is not running due to [Ljava.lang.StackTraceElement;@414efc88
04-04 14:04:18.502    1622-1644/com.couchbase.replicationsample.replicationsample D/HelloWorld﹕ Replication is not running due to com.couchbase.lite.CouchbaseLiteException: HTTP/1.1 404 Not Found

Note: I am using 10.0.2.2 instead of 127.0.0.1 because i read in forum that's how simulator maps the host machine. But i also tried 127.0.0.1 earlier which also gives the same result.

同時に、同期ゲートウェイコンソールログに次のような新しいエントリが表示されます

14:05:13.532393 HTTP:  #006: GET /_changes?feed=normal&heartbeat=300000

次のようなブラウザでこのクエリを繰り返してみました

> http://127.0.0.1:4984/_changes?feed=normal&heartbeat=300000

示している

{"error":"not_found","reason":"unknown URL"}

私がここでやっている間違いは何ですか?ソファベース初心者です。

4

2 に答える 2

1

このエラーを乗り越えることができました:

https://github.com/couchbaselabs/GrocerySync-Androidで参照プロジェクトを見つけました

元の手順/コードに加えられた主な変更は次のとおりです。

  1. 同期ゲートウェイを次のように実行しました./sync_gateway -bucket="beer-sample" -url=“http://localhost:8091/beer-sample" -verbose

  2. " " のように同期 URL にデータベースを追加しましたhttp://10.0.2.2:4984/beer-sample。つまり、database.createPullReplication("http://10.0.2.2:4984/beer-sample");

  3. 認証エラーが発生しました。ターミナルで以下のコマンドを実行して、匿名アクセスを(当分の間)有効にするGUESTアカウントを許可します

    curl -X PUT localhost:4985/beer-sample/_user/GUEST --data '{"disabled":false, "admin_channels":["public"]}'

于 2014-04-04T19:42:59.587 に答える
0

または、次のように sync_gateway の構成 (config.json など) を作成します。

{
   "interface":":4984",
   "adminInterface":":4985",
   "log":["REST"],
   "databases":{
      "registratura7":{
         "server":"http://YOUR_IP:8091",
         "bucket":"registratura7",
         "sync":`function(doc) {channel(doc.channels);}`,
         "users": { "GUEST": {"disabled": false, "admin_channels": ["*"] } }
      }
   }
}

次に、sync_gateway を次のように実行します: sync_gateway config.json。これにより、CouchDB Gateway で GUEST アカウントが有効になります。

于 2014-11-26T11:52:56.903 に答える