sitecore scheduled publishing multiple targets -
i'm trying scheduled publishing working sitecore , i'm having issues. problem have multiple targets need publish , reside on separate servers. can set web.config schedule publish on server web.config resides on, however, how can publish external server @ same time?
also, i've tried publishing 1 target next changes in web.config:
<agent type="sitecore.tasks.publishagent" method="run" interval="00:15:00"> <param desc="source database">master</param> <param desc="target database">web</param> <param desc="mode (full or smart or incremental)">smart</param> <param desc="languages">en, da</param> </agent>
the interval greater scheduling frequency(00:05:00), however, content doesn't seem published.
this in log:
info scheduler - skipping inactive agent: sitecore.tasks.publishagent
not sure why still beingness seen inactive.
any ideas?
thanks in advance.
the info message seeing stating publishagent task still set interval of 00:00:00.
info scheduler - skipping inactive agent: sitecore.tasks.publishagent
to resolve first start verifying configuration updated on server , not beingness changed sitecore include config file. easiest way check utilize sitecore showconfig utility http://sitecoreinstancename.local/sitecore/admin/showconfig.aspx. show active config of patched in elements.
verify publishagent still set 00:00:00 , update appropriate configuration files.
in order publish additional publishing database, add together in additional agent such below. schedule smart publish web every 15 minutes , smart publish target database called production every 18 minutes.
<agent type="sitecore.tasks.publishagent" method="run" interval="00:15:00"> <param desc="source database">master</param> <param desc="target database">web</param> <param desc="mode (full or smart or incremental)">smart</param> <param desc="languages">en, da</param> </agent> <agent type="sitecore.tasks.publishagent" method="run" interval="00:18:00"> <param desc="source database">master</param> <param desc="target database">production</param> <param desc="mode (full or smart or incremental)">smart</param> <param desc="languages">en, da</param> </agent>
sitecore publishing
No comments:
Post a Comment