4

I have created a test page in the Geometrixx site in CQ5. I can see the page very well on 4502 port (author environment). But when I activate the page to see it on the 4503 port (Publish environment) , I always see the yellow colored icon in front of the page on console which on hover says 'Activation pending. #1 in Queue'

Is there some workflow attached to it ? If so, how can I check it out and probably kill it (for now) ? Or is there some other reason ?

4

4 に答える 4

17

デフォルトのレプリケーションキュー設定はlocalhost:4503を指します。公開インスタンスが作成者インスタンスと同じマシン上にない場合(これは一般的です)、有効な公開インスタンスを指すように設定を変更する必要があります。有効な公開インスタンスが構成されると、アクティブ化のためにキューに入れられたアイテムが処理され、アイコンが黄色から緑色に変わります。

キューがブロックされている場合は、次の方法でキューをクリアできます。

  • /etc/replication/agents.author.htmlに移動します
  • デフォルトのレプリケーションエージェントをクリックします。
  • 次に、キューの上にある[クリア]をクリックします。これにより、キュー全体がクリアされます。
  • キュー内の1つ以上の特定のアイテムをクリアする場合は、それらを選択してから[クリア]をクリックします。

このページには、レプリケーションエージェントのトラブルシューティングに関するいくつかの手順があります。http: //helpx.adobe.com/cq/kb/replication-stuck.html

このページには、レプリケーションエージェントに関する一般的な情報があります。http: //dev.day.com/docs/en/cq/current/deploying/configuring_cq.html#Replicating from Author to Publish

于 2013-02-19T17:01:12.590 に答える
5

You can inspect the replication queues at

http://localhost:4502/etc/replication.html

The default agent is

http://localhost:4502/etc/replication/agents.author/publish.html

From here you can test the connection, view the log, and see what's in the queue. You can also clear the queue or force retry.

于 2013-02-19T22:13:01.250 に答える
0

there is a way to see a "final View" of your test page without to publish: wcmmode=disabled

http:// localhost: 4502/cf#/content/geometrixx/folder/test.html

Just delete /cf# and add ?wcmmode=disabled after the extension.

http:// localhost: 4502/content/geometrixx/folder/test.html?wcmmode=disabled 
于 2014-10-29T18:41:54.387 に答える
0

One thing not explicitly mentioned so far: You need TWO instances of AEM running. Ports 4502 and 4503 don't point to different modes of the same instance, as AEM only listens to the one port (in general). So you will need to copy your Author jar to a new directory and name it something like cq5-publish-4503.jar

In addition, you may need to update your maven pom files for code deploys. You CAN set installed bundles on author to auto replicate/publish however.

于 2014-12-01T00:48:15.137 に答える