AEM-How to find how many authors are working with the system

Statement : find the no of authors

Solution :


Find out the no of  authors that have used the system since installation
  • cd dir>/crx-quickstart/logs
  • cut -d " " -f 3 access.log | sort -u | wc -l

Find out the number of authors working on a given date:

grep "" access.log | cut -d " " -f 3 | sort -u | wc -l

No comments:

Post a Comment