@@ -59,15 +59,18 @@ If the authentication was successful, you will see a message with you Rucio user
5959[client]
6060rucio_host = https://vre-rucio.cern.ch
6161auth_host = https://vre-rucio-auth.cern.ch
62- ca_cert = /etc/pki/tls/certs/CERN-bundle.pem
62+ ca_cert = /etc/pki/tls/certs/CERN-bundle.pem # Generic CA certs filepath
63+ # ca_cert = /certs/rucio_ca.pem # Use this path if you are in a VRE session
6364auth_type = oidc
6465account = <MY_RUCIO_ACCOUNT>
6566oidc_audience = rucio
67+ oidc_polling = true
68+ oidc_issuer = escape
6669oidc_scope = openid profile offline_access
6770request_retries = 3
68- oidc_issuer = escape
69- oidc_polling = true
7071auth_oidc_refresh_activate = true
72+ auth_token_file_path = /tmp/rucio_oauth.token # Path in where OIDC tokens will be stored upon authN
73+
7174
7275[policy]
7376permission = escape
@@ -145,9 +148,20 @@ Despite the rucio client package should install most of the software dependencie
145148# For a Alma9 - x86_64 distrubution
146149dnf install - y epel- release.noarch
147150dnf upgrade - y
148- dnf install - y wget gfal2* # To install the gfal2 libraries
151+ dnf install - y " gfal2*" # To install the gfal2 libraries
149152dnf install - y voms- clients- java # To install the `voms-proxy-init` client
150153```
154+ ::: info [ developers]
155+ The command ` dnf search gfal2* ` will list all the ` gfal2 ` tools and plugins.
156+ :::
157+
158+ ::: warning [ Debian distributions]
159+ Gfal2 can be also installed via [ ` conda-forge ` ] ( https://anaconda.org/search?q=gfal2 ) .
160+ ``` bash
161+ conda install -c conda-forge gfal2 gfal-util python-gfal2
162+ ```
163+ :::
164+
151165Then, install the certificates for the VOMS validation:
152166``` python
153167# Install the LCG trust anchos for X.509 authentication - what brings the CERN-bundle.pem file needed on the rucio.cfg
0 commit comments