1

ノードを SymmetricDS と同期しようとしていますが、いくつか問題があります。TomCat 7 で war を展開します。起動してテーブルを作成し、すべて問題ないように見えますが、別のノードを登録できず、登録 URL にアクセスすると 404 応答が返されます。

接続しようとしている他のノードは次のようになります。

 Could not register.  Sleeping for 4000 ms before attempting again.
 This node is unregistered.  It will attempt to register using the registration.url
    Failed while reading batch because: http://localhost:8181/sync/registration...
    caused by: java.io.FileNotFoundException

サーバーには次の設定があります。

registration.url=http://localhost:8181/sync
sync.url=http://localhost:8181/sync
auto.registration=true

クライアント:

registration.url=http://localhost:8181/sync
auto.registration=true

Tomcat マネージャーはサーバーを実行中として表示します。なにが問題ですか?

4

1 に答える 1

4

URL に問題がありました... 正しいのは:

http://localhost:8181/warName/sync
于 2014-04-28T23:26:13.457 に答える