 |
WP5: GridLab Testbed
Browing the Grid Information Servers
The main GIIS server for the GridLab is running on port 2135
on the host mds.gridlab.org. This server can be search
using:
- standard ldap_search
ldapsearch -s one -x -h mds.gridlab.org -p 2135 -b Mds-Vo-name=gridlab,o=grid "(objectclass=*)" dn
- the globus command grid-info-search
grid-info-search -s one -h mds.gridlab.org -b Mds-Vo-name=gridlab,o=grid "(objectclass=*)" dn
- all computers in GIIS can be listed by using
grid-info-search -nowrap -h mds.gridlab.org -b Mds-Vo-name=gridlab,o=grid \
'(&(objectClass=MdsComputer)(!(objectClass=MdsService)))' dn 2>/dev/null|grep '^dn:'
- a LDAP browser is at https://lindir.ics.muni.cz/LDAPExplorer/gridlab.php
Syntax of LDAP filters is defined in RFC 2254, it is a prefix notation, so for example to list all objects which are MdsComputer but are not MdsService use (&(objectClass=MdsComputer)(!(objectClass=MdsService)))
|