Changes between Version 5 and Version 6 of Internal/cProcedures/aGeneratingReports


Ignore:
Timestamp:
Apr 7, 2016, 12:57:45 PM (8 years ago)
Author:
Olivera Tosic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/cProcedures/aGeneratingReports

    v5 v6  
    4343
    4444== LDAP reports ==
    45 To get total number of registered user run following command:
     45*To get total number of registered user run following command:
    4646{{{
    4747ldapsearch -h ldap.orbit-lab.org -p 389 -x -D "cn=admin,dc=orbit-lab, dc=org" -w <ldap secret> "objectClass=person" uid -z 0
    4848}}}
    49 ''numEntries'' represents number of users
     49'''numEntries''' represents number of users
    5050
    5151
    52 To get total number of registered organizations run following command:
     52*To get total number of registered organizations run following command:
    5353{{{
    5454ldapsearch -h ldap.orbit-lab.org -p 389 -x -b "dc=orbit-lab, dc=org" "objectclass=organizationalUnit"
     
    5656
    5757
    58 ''numEntries'' represents number of organizations
     58'''numEntries''' represents number of organizations
    5959
    60 Get list of registrated organizations
     60* Get list of registered organizations:
    6161{{{
    6262ldapsearch -LLL -h ldap.orbit-lab.org -p 389 -x -b "dc=orbit-lab, dc=org" "objectclass=organizationalUnit" ou |grep ^ou:|sed -e 's/ou: //'
    6363}}}
     64
     65* Get number of users per organization:
     66sh ldapUsers.sh groups.txt
     67
     68