user674669
user674669

Reputation: 12412

How do I link aem server publish instance with the author instance?

I am running 2 aem servers on ubuntu.

$ java -jar cq-author-p14502.jar
$ java -jar cq-publish-p14503.jar

When I make changes to the author instance and publish, the changes are not showing up in the publish instance. I believe the reason is that the author instance doesn't know the port number where the publish instance is running. How do I tell the author instance where the publish instance is running?

Upvotes: 1

Views: 3978

Answers (1)

VAr
VAr

Reputation: 2601

Go to miscadmin page Replication agent author edit the default agent publish settings Transport tab URI pointing to your publish server. (or create a new publish agent and add the configurations pointing to your publish server)

In your case if your publish server is running on the port number 14503 point it to same with your server name/ipaddress.

Have more information at Adobe documentation

Default publish agent

Transport uri

Upvotes: 5

Related Questions