Book Image

Alfresco for Administrators

By : Vandana Pal
Book Image

Alfresco for Administrators

By: Vandana Pal

Overview of this book

Alfresco is an open source Enterprise Content Management (ECM) system for Windows and Linux-like operating systems. The year-on-year growth of business connections, contacts, and communications is expanding enterprise boundaries more than ever before. Alfresco enables organizations to collaborate more effectively, improve business process efficiency, and ensure information governance. The basic purpose of Alfresco is to help users to capture and manage information in a better way. It helps you capture, organize, and share binary files. This book will cover the basic building blocks of an Alfresco system, how the components fit together, and the information required to build a system architecture. This book will also focus on security aspects of Alfresco. such as authentication, troubleshooting, managing permissions, and so on. It will also focus on managing content and storage, indexing and searches, setting up clustering for high availability, and so forth.
Table of Contents (17 chapters)
Alfresco for Administrators
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Troubleshooting Solr


Solr provides various Rest APIs to troubleshoot and re-index Solr Indexes. Here is a list of a few of them:

  • Use the URL below to generate the health report of the Solr Indexes:

    • https://localhost:8443/solr4/admin/cores?action=REPORT&wt=xml

  • This will generate a report about the health of each of the cores. This provides a count of total transactions, the last indexed transaction, and the commit time. If there are duplicate indexes it will show you the details, and if any transaction is not indexed, you can also identify that from this report. If your repository size is large, this report will take some time to generate. You can change the action to Summary to generate a summary report. Refer to the screenshot below for a detailed report:

  • Solr provides simple FIX action parameters to fix all the failed transactions or un-indexed nodes. By executing the URL below, it will verify all the transactions with the database and all the failed or un-indexed transactions will be...