Skip to content

Commit 05bc3d1

Browse files
dchristidisbari12
authored andcommitted
Replace all legacy-formatted X509 identities
1 parent 88b89a8 commit 05bc3d1

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

docs/operator/configuration.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,16 @@ policies/permissions can be set depending on the account type. Once the account
2323
is created, you need to create and attach an identity to this account:
2424

2525
```bash
26-
$ rucio-admin identity add --type X509 --id "/DC=blah/DC=blih/OU=Organic \
27-
Units/OU=Users/CN=jdoe" --email [email protected] --account jdoe
26+
$ rucio-admin identity add --type X509 \
27+
--id "CN=jdoe,OU=Users,OU=Organic Units,DC=blih,DC=blah" \
28+
--email [email protected] --account jdoe
2829
```
2930

3031
The list of possible identity types is X509, GSS, USERPASS, SSH, OIDC:
3132

3233
```bash
3334
$ rucio-admin account list-identities jdoe
34-
Identity: /DC=blah/DC=blih/OU=Organic Units/OU=Users/CN=jdoe, type: X509
35+
Identity: CN=jdoe,OU=Users,OU=Organic Units,DC=blih,DC=blah, type: X509
3536
```
3637

3738
You can set attributes to the users:

docs/operator/configuration_parameters.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ attributes.
6464
- **x509_email**: _(Optional)_ Email of the X.509 identity specified in
6565
`x509_identity`. Default: `ph-adp-ddm-lab@cern.ch`.
6666
- **x509_identity**: _(Optional)_ Identity of the X.509 certificate. Default:
67-
`/C=CH/ST=Geneva/O=CERN/OU=PH-ADP-CO/CN=DDMLAB Client
68-
Certificate/emailAddress=ph-adp-ddm-lab@cern.ch`.
67+
`emailAddress=ph-adp-ddm-lab@cern.ch,CN=DDMLAB Client
68+
Certificate,OU=PH-ADP-CO,O=CERN,ST=Geneva,C=CH`.
6969
- **c3po**
7070
- **algorithms**: _(Optional)_ Placement algorithm.
7171

@@ -412,8 +412,8 @@ attributes.
412412
- **brokers**: Brokers separated by commas. Example: `atlas-test-mb.cern.ch`.
413413
- **chunksize**: Integer
414414
- **excluded_usrdns**: Separated by commas. Example:
415-
`/DC=ch/DC=cern/OU=Organic Units/OU=Users/CN=gangarbt/CN=722147/CN=Robot:
416-
Ganga Robot/CN=proxy`.
415+
`CN=proxy,CN=Robot: Ganga Robot,CN=722147,CN=gangarbt,OU=Users,OU=Organic
416+
Units,DC=cern,DC=ch`.
417417
- **password**: _(Optional)_ Password of the `username`. Mandatory if
418418
`use_ssl` is not set. No default.
419419
- **port**: Port of the broker.
@@ -541,3 +541,4 @@ attributes.
541541
- **type**: <!--??--> Values: `{LOCALGROUPDISK, LOCALGROUPTAPE, GROUPDISK,
542542
SCRATCHDISK, MOCK, TEST, DATADISK}`. Default: ` `.
543543
- **verify_checksum**: Boolean. No default.
544+

docs/user/using_the_admin_client.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ policies/permissions can be set depending on the account type. Once the account
2020
is created, you need to create and attach an identity to this account::
2121

2222
```bash
23-
$ rucio-admin identity add --type X509 --id "/DC=blah/DC=blih/OU=Organic \
24-
Units/OU=Users/CN=jdoe" --email [email protected] --account jdoe
23+
$ rucio-admin identity add --type X509 \
24+
--id "CN=jdoe,OU=Users,OU=Organic Units,DC=blih,DC=blah" \
25+
--email [email protected] --account jdoe
2526
```
2627

2728
The list of possible identity types is X509, GSS, USERPASS, SSH::
2829

2930
```bash
3031
$ rucio-admin account list-identities jdoe
31-
Identity: /DC=blah/DC=blih/OU=Organic Units/OU=Users/CN=jdoe, type: X509
32+
Identity: CN=jdoe,OU=Users,OU=Organic Units,DC=blih,DC=blah, type: X509
3233
```
3334

3435
You can set attributes to the users::

0 commit comments

Comments
 (0)