Difference between revisions of "stoney core: Global Searches"
[unchecked revision] | [unchecked revision] |
(→Overview) |
|||
Line 14: | Line 14: | ||
The following example shows you the numerical value (integer) search (uid search) with '''400''' (400*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | The following example shows you the numerical value (integer) search (uid search) with '''400''' (400*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=reseller,dc= | + | -b "ou=reseller,dc=stoney-cloud,dc=org" \ |
-s one \ | -s one \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(uid=*400*)" o sstIsActive | "(uid=*400*)" o sstIsActive | ||
Line 26: | Line 26: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=4000000,ou=reseller,dc= | + | dn: uid=4000000,ou=reseller,dc=stoney-cloud,dc=org |
sstIsActive: TRUE | sstIsActive: TRUE | ||
o: stepping stone GmbH | o: stepping stone GmbH | ||
Line 57: | Line 57: | ||
The following example shows you the alphanumerical value (non-integer) search with '''ste''' (*ste*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | The following example shows you the alphanumerical value (non-integer) search with '''ste''' (*ste*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=reseller,dc= | + | -b "ou=reseller,dc=stoney-cloud,dc=org" \ |
-s one \ | -s one \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(o=*ste*)" o sstIsActive | "(o=*ste*)" o sstIsActive | ||
Line 69: | Line 69: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=4000000,ou=reseller,dc= | + | dn: uid=4000000,ou=reseller,dc=stoney-cloud,dc=org |
sstIsActive: TRUE | sstIsActive: TRUE | ||
o: stepping stone GmbH | o: stepping stone GmbH | ||
Line 80: | Line 80: | ||
The following example shows you the numerical value (integer) search (uid search) with '''400''' (400*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | The following example shows you the numerical value (integer) search (uid search) with '''400''' (400*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=customers,dc= | + | -b "ou=customers,dc=stoney-cloud,dc=org" \ |
-s one \ | -s one \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(&(sstBelongsToResellerUID=4000000)(|(uid=*400*)(sstExternalID=*400*)))" o sn givenName sstIsActive sstExternalID | "(&(sstBelongsToResellerUID=4000000)(|(uid=*400*)(sstExternalID=*400*)))" o sn givenName sstIsActive sstExternalID | ||
Line 92: | Line 92: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=4000001,ou=customers,dc= | + | dn: uid=4000001,ou=customers,dc=stoney-cloud,dc=org |
sstIsActive: TRUE | sstIsActive: TRUE | ||
o: stepping stone GmbH | o: stepping stone GmbH | ||
sstExternalID: 40013 | sstExternalID: 40013 | ||
− | dn: uid=4000083,ou=customers,dc= | + | dn: uid=4000083,ou=customers,dc=stoney-cloud,dc=org |
sstIsActive: TRUE | sstIsActive: TRUE | ||
o: DEVROOM | o: DEVROOM | ||
Line 105: | Line 105: | ||
The following example shows you the alphanumerical value (non-integer) search with '''ste''' (*ste*) as the search parameter and the attributes '''o''' (for the organisation), '''givenName''', '''sn''' (surname) and '''sstIsActive''' as the return values: | The following example shows you the alphanumerical value (non-integer) search with '''ste''' (*ste*) as the search parameter and the attributes '''o''' (for the organisation), '''givenName''', '''sn''' (surname) and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=customers,dc= | + | -b "ou=customers,dc=stoney-cloud,dc=org" \ |
-s one \ | -s one \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(&(sstBelongsToResellerUID=4000000)(|(o=*ste*)(sn=*ste*)(givenName=*ste*)(sstExternalID=*400*)))" o givenName sn sstIsActive sstExternalID | "(&(sstBelongsToResellerUID=4000000)(|(o=*ste*)(sn=*ste*)(givenName=*ste*)(sstExternalID=*400*)))" o givenName sn sstIsActive sstExternalID | ||
Line 117: | Line 117: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=4000001,ou=customers,dc= | + | dn: uid=4000001,ou=customers,dc=stoney-cloud,dc=org |
sstIsActive: TRUE | sstIsActive: TRUE | ||
o: stepping stone GmbH | o: stepping stone GmbH | ||
Line 127: | Line 127: | ||
The following example shows you the numerical value (integer) search (uid search) with '''400''' (*400*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | The following example shows you the numerical value (integer) search (uid search) with '''400''' (*400*) as the search parameter and the attributes '''o''' (for the organisation) and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=people,dc= | + | -b "ou=people,dc=stoney-cloud,dc=org" \ |
-s one \ | -s one \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(&(sstBelongsToResellerUID=4000000)(uid=*400*))" o sn givenName sstIsActive | "(&(sstBelongsToResellerUID=4000000)(uid=*400*))" o sn givenName sstIsActive | ||
Line 139: | Line 139: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=4000002,ou=people,dc= | + | dn: uid=4000002,ou=people,dc=stoney-cloud,dc=org |
givenName: Michael | givenName: Michael | ||
sn: Eichenberger | sn: Eichenberger | ||
sstIsActive: TRUE | sstIsActive: TRUE | ||
− | dn: uid=4000064,ou=people,dc= | + | dn: uid=4000064,ou=people,dc=stoney-cloud,dc=org |
givenName: Christian | givenName: Christian | ||
sn: Wittkowski | sn: Wittkowski | ||
sstIsActive: TRUE | sstIsActive: TRUE | ||
− | dn: uid=4000066,ou=people,dc= | + | dn: uid=4000066,ou=people,dc=stoney-cloud,dc=org |
givenName: Stijn | givenName: Stijn | ||
sn: Van Paesschen | sn: Van Paesschen | ||
sstIsActive: FALSE | sstIsActive: FALSE | ||
− | dn: uid=4000069,ou=people,dc= | + | dn: uid=4000069,ou=people,dc=stoney-cloud,dc=org |
givenName: Jan | givenName: Jan | ||
sn: Guldentops | sn: Guldentops | ||
sstIsActive: FALSE | sstIsActive: FALSE | ||
− | dn: uid=4000080,ou=people,dc= | + | dn: uid=4000080,ou=people,dc=stoney-cloud,dc=org |
givenName: Tatiana | givenName: Tatiana | ||
sn: Eichenberger | sn: Eichenberger | ||
Line 168: | Line 168: | ||
The following example shows you the alphanumerical value (non-integer) search with '''mic''' (*mic*) as the search parameter and the attributes '''o''' (for the organisation), '''givenName''', '''sn''' (surname) and '''sstIsActive''' as the return values: | The following example shows you the alphanumerical value (non-integer) search with '''mic''' (*mic*) as the search parameter and the attributes '''o''' (for the organisation), '''givenName''', '''sn''' (surname) and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=people,dc= | + | -b "ou=people,dc=stoney-cloud,dc=org" \ |
-s one \ | -s one \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(&(sstBelongsToResellerUID=4000000)(|(o=*mic*)(sn=*mic*)(givenName=*mic*)))" o givenName sn sstIsActive | "(&(sstBelongsToResellerUID=4000000)(|(o=*mic*)(sn=*mic*)(givenName=*mic*)))" o givenName sn sstIsActive | ||
Line 180: | Line 180: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=4000002,ou=people,dc= | + | dn: uid=4000002,ou=people,dc=stoney-cloud,dc=org |
givenName: Michael | givenName: Michael | ||
sn: Eichenberger | sn: Eichenberger | ||
Line 193: | Line 193: | ||
The following example shows you the numerical value (integer) search (uid search) with '''372''' (*372*) as the search parameter and the attributes '''uid''' (for the backup account uid), '''gecos''' (the backup name), '''sstQuota''' and '''sstIsActive''' as the return values: | The following example shows you the numerical value (integer) search (uid search) with '''372''' (*372*) as the search parameter and the attributes '''uid''' (for the backup account uid), '''gecos''' (the backup name), '''sstQuota''' and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=backup,ou=services,dc= | + | -b "ou=backup,ou=services,dc=stoney-cloud,dc=org" \ |
-s sub \ | -s sub \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(&(sstBelongsToResellerUID=4000000)(uid=*372*))" uid gecos sstQuota sstIsActive | "(&(sstBelongsToResellerUID=4000000)(uid=*372*))" uid gecos sstQuota sstIsActive | ||
Line 205: | Line 205: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=3723707,ou=accounts,ou=backup,ou=services,dc= | + | dn: uid=3723707,ou=accounts,ou=backup,ou=services,dc=stoney-cloud,dc=org |
uid: 3723707 | uid: 3723707 | ||
gecos: Michael Eichenberger | gecos: Michael Eichenberger | ||
Line 211: | Line 211: | ||
sstQuota: 10737418240 | sstQuota: 10737418240 | ||
− | dn: uid=3723708,ou=accounts,ou=backup,ou=services,dc= | + | dn: uid=3723708,ou=accounts,ou=backup,ou=services,dc=stoney-cloud,dc=org |
uid: 3723708 | uid: 3723708 | ||
gecos: Christian Wittkowski | gecos: Christian Wittkowski | ||
Line 221: | Line 221: | ||
The following example shows you the alphanumerical value (non-integer) search with '''mic''' (*mic*) as the search parameter and the attributes '''uid''' (for the backup account uid), '''gecos''' (the backup name), '''sstQuota''' and '''sstIsActive''' as the return values: | The following example shows you the alphanumerical value (non-integer) search with '''mic''' (*mic*) as the search parameter and the attributes '''uid''' (for the backup account uid), '''gecos''' (the backup name), '''sstQuota''' and '''sstIsActive''' as the return values: | ||
<pre> | <pre> | ||
− | ldapsearch -H ldaps://ldapm. | + | ldapsearch -H ldaps://ldapm.stoney-cloud.org \ |
− | -b "ou=backup,ou=services,dc= | + | -b "ou=backup,ou=services,dc=stoney-cloud,dc=org" \ |
-s sub \ | -s sub \ | ||
− | -D "cn=Manager,dc= | + | -D "cn=Manager,dc=stoney-cloud,dc=org" \ |
-W -x -LLL \ | -W -x -LLL \ | ||
"(&(sstBelongsToResellerUID=4000000)(|(cn=*mic*)(gecos=*mic*)(givenName=*mic*)))" uid gecos sstQuota sstIsActive | "(&(sstBelongsToResellerUID=4000000)(|(cn=*mic*)(gecos=*mic*)(givenName=*mic*)))" uid gecos sstQuota sstIsActive | ||
Line 233: | Line 233: | ||
The result(s): | The result(s): | ||
<pre> | <pre> | ||
− | dn: uid=3723707,ou=accounts,ou=backup,ou=services,dc= | + | dn: uid=3723707,ou=accounts,ou=backup,ou=services,dc=stoney-cloud,dc=org |
uid: 3723707 | uid: 3723707 | ||
gecos: Michael Eichenberger | gecos: Michael Eichenberger |
Revision as of 09:35, 6 May 2014
Contents
Overview
The main search field in the upper right corner searches the whole directory and gives first results while typing (actual search starts after entering three characters). The following example shows, that after typing four letters, we have four results (each containing the first four letters “step”):
Search Selection
After the user has entered the first three characters, we do a first search selection:
- Numerical value (integer): Start a search for a uid (unique identifier)
- Alphanumerical value (non-integer): Start a search for either displayName or gecos.
Reseller Search
Numerical value (integer) Reseller Search
The following example shows you the numerical value (integer) search (uid search) with 400 (400*) as the search parameter and the attributes o (for the organisation) and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=reseller,dc=stoney-cloud,dc=org" \ -s one \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(uid=*400*)" o sstIsActive
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=4000000,ou=reseller,dc=stoney-cloud,dc=org sstIsActive: TRUE o: stepping stone GmbH
Legend:
-H: ldapuri Specify URI(s) referring to the ldap server(s). -b: searchbase Use searchbase as the starting point for the search instead of the default. -s: base|one|sub Specify the scope of the search to be one of base, one, or sub to specify a base object, one-level, or subtree search. The default is sub. -D: binddn Use the Distinguished Name binddn to bind to the LDAP directory. -W: Prompt for simple authentication. This is used instead of spec- ifying the password on the command line. -x: Use simple authentication instead of SASL. -LLL: Search results are display in LDAP Data Interchange Format detailed in ldif(5). A single -L restricts the output to LDIFv1. A second -L disables comments. A third -L disables printing of the LDIF version. The default is to use an extended version of LDIF.
Alphanumerical value (non-integer) Reseller Search
The following example shows you the alphanumerical value (non-integer) search with ste (*ste*) as the search parameter and the attributes o (for the organisation) and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=reseller,dc=stoney-cloud,dc=org" \ -s one \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(o=*ste*)" o sstIsActive
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=4000000,ou=reseller,dc=stoney-cloud,dc=org sstIsActive: TRUE o: stepping stone GmbH
Customer Search
The customer search is a bit different than the reseller search, because we can have company and private customers.
Numerical value (integer) Customer Search
The following example shows you the numerical value (integer) search (uid search) with 400 (400*) as the search parameter and the attributes o (for the organisation) and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=customers,dc=stoney-cloud,dc=org" \ -s one \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(&(sstBelongsToResellerUID=4000000)(|(uid=*400*)(sstExternalID=*400*)))" o sn givenName sstIsActive sstExternalID
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=4000001,ou=customers,dc=stoney-cloud,dc=org sstIsActive: TRUE o: stepping stone GmbH sstExternalID: 40013 dn: uid=4000083,ou=customers,dc=stoney-cloud,dc=org sstIsActive: TRUE o: DEVROOM
Alphanumerical value (non-integer) Customer Search
The following example shows you the alphanumerical value (non-integer) search with ste (*ste*) as the search parameter and the attributes o (for the organisation), givenName, sn (surname) and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=customers,dc=stoney-cloud,dc=org" \ -s one \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(&(sstBelongsToResellerUID=4000000)(|(o=*ste*)(sn=*ste*)(givenName=*ste*)(sstExternalID=*400*)))" o givenName sn sstIsActive sstExternalID
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=4000001,ou=customers,dc=stoney-cloud,dc=org sstIsActive: TRUE o: stepping stone GmbH sstExternalID: 40013
Person (People) Search
Numerical value (integer) People Search
The following example shows you the numerical value (integer) search (uid search) with 400 (*400*) as the search parameter and the attributes o (for the organisation) and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=people,dc=stoney-cloud,dc=org" \ -s one \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(&(sstBelongsToResellerUID=4000000)(uid=*400*))" o sn givenName sstIsActive
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=4000002,ou=people,dc=stoney-cloud,dc=org givenName: Michael sn: Eichenberger sstIsActive: TRUE dn: uid=4000064,ou=people,dc=stoney-cloud,dc=org givenName: Christian sn: Wittkowski sstIsActive: TRUE dn: uid=4000066,ou=people,dc=stoney-cloud,dc=org givenName: Stijn sn: Van Paesschen sstIsActive: FALSE dn: uid=4000069,ou=people,dc=stoney-cloud,dc=org givenName: Jan sn: Guldentops sstIsActive: FALSE dn: uid=4000080,ou=people,dc=stoney-cloud,dc=org givenName: Tatiana sn: Eichenberger sstIsActive: TRUE
Alphanumerical value (non-integer) People Search
The following example shows you the alphanumerical value (non-integer) search with mic (*mic*) as the search parameter and the attributes o (for the organisation), givenName, sn (surname) and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=people,dc=stoney-cloud,dc=org" \ -s one \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(&(sstBelongsToResellerUID=4000000)(|(o=*mic*)(sn=*mic*)(givenName=*mic*)))" o givenName sn sstIsActive
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=4000002,ou=people,dc=stoney-cloud,dc=org givenName: Michael sn: Eichenberger sstIsActive: TRUE
Services Search
Each Service needs to be looked at separately, because the services have different dn's attributes.
Backup
Numerical value (integer) Backup Search
The following example shows you the numerical value (integer) search (uid search) with 372 (*372*) as the search parameter and the attributes uid (for the backup account uid), gecos (the backup name), sstQuota and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=backup,ou=services,dc=stoney-cloud,dc=org" \ -s sub \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(&(sstBelongsToResellerUID=4000000)(uid=*372*))" uid gecos sstQuota sstIsActive
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=3723707,ou=accounts,ou=backup,ou=services,dc=stoney-cloud,dc=org uid: 3723707 gecos: Michael Eichenberger sstIsActive: TRUE sstQuota: 10737418240 dn: uid=3723708,ou=accounts,ou=backup,ou=services,dc=stoney-cloud,dc=org uid: 3723708 gecos: Christian Wittkowski sstIsActive: TRUE sstQuota: 10737418240
Alphanumerical value (non-integer) Backup Search
The following example shows you the alphanumerical value (non-integer) search with mic (*mic*) as the search parameter and the attributes uid (for the backup account uid), gecos (the backup name), sstQuota and sstIsActive as the return values:
ldapsearch -H ldaps://ldapm.stoney-cloud.org \ -b "ou=backup,ou=services,dc=stoney-cloud,dc=org" \ -s sub \ -D "cn=Manager,dc=stoney-cloud,dc=org" \ -W -x -LLL \ "(&(sstBelongsToResellerUID=4000000)(|(cn=*mic*)(gecos=*mic*)(givenName=*mic*)))" uid gecos sstQuota sstIsActive
Do not forget to restrict the search according to the person who is currently logged in.
The result(s):
dn: uid=3723707,ou=accounts,ou=backup,ou=services,dc=stoney-cloud,dc=org uid: 3723707 gecos: Michael Eichenberger sstIsActive: TRUE sstQuota: 10737418240