Hi,
Looks like we have some nodes in CRXDE that do not show in search results. Is there a way to fix this issue without restarting our instance (actually we have a 2-instance cluster).
Also, is there a way to run a consistency check without restarting CQ5?
Thanks in advance.
Solved! Go to Solution.
Views
Replies
Total Likes
Restart is required , however you can minimize the time by following http://www.wemblog.com/2011/09/how-to-reindex-large-repository.html
Restart is required , however you can minimize the time by following http://www.wemblog.com/2011/09/how-to-reindex-large-repository.html
Hi Sham,
Would this work without restart: http://docs.adobe.com/docs/en/cq/current/deploying/upgrading/consistency-check.html?
If so, do we have to do it on each instance separately?
Thanks.
LinearGradient wrote...
Hi Sham,
Would this work without restart: http://docs.adobe.com/docs/en/cq/current/deploying/upgrading/consistency-check.html?
If so, do we have to do it on each instance separately?
Thanks.
You can run without restart during non peak load time
Yes, it is possible to rebuild the search index in CQ5 (5.6) without incurring downtime or restarting the instance. Here's how you can do it:
Use the Index Rebuilder Tool: AEM provides an index rebuild tool (/bin/reindex) to rebuild the search index without needing to restart the instance. You can access this tool by navigating to: http://<host>:<port>/bin/reindex
Trigger Reindexing:
Rebuild Specific Index: If you're facing issues with specific search indexes, you can rebuild only the index that corresponds to your issue. In CQ5, there are different types of indexes (e.g., Lucene, Oak indexes). To rebuild a particular index, you may need to run: curl -u <username>:<password> -X POST http://<host>:<port>/bin/reindex/<index-name>
JCR Consistency Check: To ensure the repository is consistent and free from corruption, you can run the consistency checker. In AEM, this can be done via the JCR console, typically under /libs/crx/system/console/jcr/repository-consistency.
Run the Check:
By using these methods, you can fix indexing and consistency issues without any downtime.
Views
Replies
Total Likes