« Keycloak » : différence entre les versions
Création de la page Keycloak |
Replace some code tags by syntaxhighlight inline |
||
(3 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 2 : | Ligne 2 : | ||
== Configuration actuelle == | == Configuration actuelle == | ||
Le service [[Nginx | |||
Le service [[Nginx]] transfère les pages web du port '''8127''' (géré par Keycloak) vers le port '''443''' (https) sur le domaine <code>wiki.linarphy.net</code> (serveur [[computing]]). Les données sont gérés par [[Postgresql]] via une base de donnée ayant pour nom '''keycloak''' et pour utilisateur '''keycloak'''. Cette instance stocké dans le dossier <code>/usr/share/keycloak/</code> tourne sur la version '''26.0.0''' avec '''openjdk-21.0.2''' (lui-même dans <code>/usr/share/openjdk/21/</code>). | |||
== Installation == | == Installation == | ||
Ligne 8 : | Ligne 9 : | ||
=== Prérequis === | === Prérequis === | ||
* [[Nginx | * [[Nginx]] | ||
* [[Postgresql]] | * [[Postgresql]] | ||
* [[Certbot]] | * [[Certbot]] | ||
* [[Freeipa-client]] | |||
=== Procédure === | === Procédure === | ||
==== Fichiers ==== | ==== Fichiers ==== | ||
Le dossier peut ensuite être déplacé dans son emplacement final (<code>/usr/share/keycloak/</code>) avec la commande < | La première étape consiste au téléchargement du service avec la commande <syntaxhighlight lang="bash" inline>curl -L https://github.com/keycloak/keycloak/releases/download/26.0.0/keycloak-26.0.0.tar.gz -o keycloak-26.0.0.tar.gz</syntaxhighlight> en tant qu'utilisateur '''root'''. Le lien est récupéré sur la page de [https://www.keycloak.org/downloads téléchargement]. Le fichier '''keycloak-26.0.0.tar.gz''' peut ensuite être extrait avec la commande <syntaxhighlight lang="bash" inline>tar -xf keycloak-26.0.0.tar.gz</syntaxhighlight> en tant qu'utilisateur '''root''' pour ensuite supprimer cette archive: <syntaxhighlight lang="bash" inline>rm keycloak-26.0.0.tar.gz</syntaxhighlight>. | ||
Le dossier peut ensuite être déplacé dans son emplacement final (<code>/usr/share/keycloak/</code>) avec la commande <syntaxhighlight lang="bash" inline>mv keycloak-26.0.0 /usr/share/keycloak</syntaxhighlight>(toujours en tant que '''root'''). | |||
==== Java ==== | |||
Télécharger OpenJDK 21 avec la commande <syntaxhighlight lang="bash" inline>curl -L {lien-targz-openjdk-21} -o openjdk-21.tar.gz</syntaxhighlight> en tant que '''root'''. Le lien vers l'archive est disponible [https://jdk.java.net/archive/ ici]. Puis extraire l'archive: <syntaxhighlight lang="bash" inline>tar -xf openjdk-21.tar.gz</syntaxhighlight> et supprimer l'archive téléchargée: <syntaxhighlight lang="bash" inline>rm openjdk-21.tar.gz</syntaxhighlight>. Si le dossier n'existe pas déjà, crée le dossier <code>/usr/share/openjdk/</code> avec la commande <syntaxhighlight lang="bash" inline>mkdir /usr/share/openjdk</syntaxhighlight> puis déplacer le dossier extrait vers son emplacement final: <syntaxhighlight lang="bash" inline>mv jdk-21.0.2 /usr/share/openjdk/21</syntaxhighlight>. | |||
Pour se lier au service '''LDAP''' du [[Freeipa-server|serveur FreeIPA]], il est nécessaire d'ajouter les clefs publics des certificats utilisés pour sécuriser la connexion. L’utilisation de la commande <syntaxhighlight lang="bash" inline>/usr/share/openjdk/21/bin/keytool -v -import -file /etc/ipa/ca.crt -alias ipacrt -keystore /usr/share/openjdk/21/lib/security/cacerts</syntaxhighlight> permet d'effectuer cette opération (ajouter la clef public du certificat du serveur au stockage de clef public de l'installation de java qui va être utilisé par Keycloak). | |||
==== Permissions ==== | ==== Permissions ==== | ||
Le service s'exécutera avec un utilisateur particulier (et non '''root''') pour isoler le processus. Il est donc nécessaire de créer l'utilisateur local '''keycloak''' avec la commande <syntaxhighlight lang="bash" inline>adduser --system --no-create-home --group keycloak</syntaxhighlight> en tant que '''root'''. La commande <syntaxhighlight lang="bash" inline>chown -R keycloak:keycloak /usr/share/keycloak/</syntaxhighlight> pour donner les permissions du dossier à ce nouvel utilisateur. | |||
Keycloak sera accessible via une connexion chiffré (https), et sa configuration nécessite l'accès à la clef privé et public utilisé pour cette connexion (comme [[Nginx]]). Pour protéger ces clefs et ne pas les rendre accessible à d'autres utilisateur que '''keycloak''', un hook (script) sera mis en place pour être exécuté par [[Certbot]]. Il va donc être nécessaire de créer le dossier <code>/usr/share/keycloak/certs</code> via la commande <syntaxhighlight lang="bash" inline>mkdir /usr/share/keycloak/certs | |||
</syntaxhighlight> en tant que '''root''' (oui oui, pas '''keycloak''' pour le moment, c'est normal), puis de modifier ces permissions avec les commandes <syntaxhighlight lang="bash" inline>chown keycloak:keycloak /usr/share/keycloak/certs</syntaxhighlight> et <syntaxhighlight lang="bash" inline>chmod 500 /usr/share/keycloak/certs</syntaxhighlight>. Créer ensuite le fichier <code>/usr/share/keycloak/certs/hook.sh</code> toujours en tant que '''root''' avec l'éditeur de sont choix contenant le script: | |||
<syntaxhighlight lang="bash" line="1"> | |||
#!/usr/bin/env sh | |||
# adapted from https://gist.github.com/Sternerson/file-ssl-deploy-hook-L1 | |||
KEYCLOAK_CERT_DIR=/usr/share/keycloak/certs | |||
umask 077 # the certificate are not world readable during the copying | |||
cp "${RENEWED_LINEAGE}/privkey.pem" "${KEYCLOAK_CERT_DIR}/privkey.pem" | |||
cp "${RENEWED_LINEAGE}/fullchain.pem" "${KEYCLOAK_CERT_DIR}/fullchain.pem" | |||
chown keycloak:keycloak "${KEYCLOAK_CERT_DIR}/privkey.pem" | |||
chown keycloak:keycloak "${KEYCLOAK_CERT_DIR}/fullchain.pem" | |||
chmod 400 "${KEYCLOAK_CERT_DIR}/privkey.pem" | |||
chmod 400 "${KEYCLOAK_CERT_DIR}/fullchain.pem" | |||
</syntaxhighlight> | |||
Exécuter la commande <syntaxhighlight lang="bash" inline>chmod +x /usr/share/keycloak/hook.sh</syntaxhighlight> pour permettre l'exécution du script. Les permissions de ce fichier ne vont pas être autrement modifié, le script ne sera exécuté que par l'utilisateur '''root'''. | |||
==== Configuration ==== | |||
<syntaxhighlight lang="ini" line="1"> | |||
# Basic settings for running in production. Change accordingly before deploying the server. | |||
# Database | |||
# The database vendor. | |||
#db=postgres | |||
db=postgres | |||
# The username of the database user. | |||
#db-username=keycloak | |||
db-username=keycloak | |||
# The password of the database user. | |||
#db-password=password | |||
db-password={keycloak-postgresql-password} | |||
# The full database JDBC URL. If not provided, a default URL is set based on the selected database vendor. | |||
#db-url=jdbc:postgresql://localhost/keycloak | |||
db-url=jdbc:postgresql://localhost/keycloak | |||
# Observability | |||
# If the server should expose healthcheck endpoints. | |||
#health-enabled=true | |||
health-enabled=true | |||
# If the server should expose metrics endpoints. | |||
#metrics-enabled=true | |||
metrics-enabled=true | |||
# HTTP | |||
# The file path to a server certificate or certificate chain in PEM format. | |||
#https-certificate-file=${kc.home.dir}conf/server.crt.pem | |||
https-certificate-file=${kc.home.dir}/certs/fullchain.pem | |||
# The file path to a private key in PEM format. | |||
#https-certificate-key-file=${kc.home.dir}conf/server.key.pem | |||
https-certificate-key-file=${kc.home.dir}/certs/privkey.pem | |||
# The proxy address forwarding mode if the server is behind a reverse proxy. | |||
#proxy=reencrypt | |||
# Do not attach route to cookies and rely on the session affinity capabilities from reverse proxy | |||
#spi-sticky-session-encoder-infinispan-should-attach-route=false | |||
# Hostname for the Keycloak server. | |||
#hostname=myhostname | |||
hostname=auth.linarphy.net | |||
## Added manually | |||
proxy-headers=xforwarded | |||
https-port=8127 | |||
</syntaxhighlight> | |||
==== Nginx ==== | |||
Créer le fichier <code>/etc/nginx/sites-available/auth.linarphy.net</code> contenant la configuration Nginx suivante: | |||
<syntaxhighlight lang="nginx" line="1"> | |||
server { | |||
server_name auth.linarphy.net; | |||
listen 80; | |||
listen [::]:80; | |||
} | |||
</syntaxhighlight> | |||
Puis créer un lien symbolique avec la commande <syntaxhighlight lang="bash" inline> | |||
ln -s /etc/nginx/sites-available/auth.linarphy.net /etc/nginx/sites-enabled/auth.linarphy.net | |||
</syntaxhighlight>et tester la configuration via <syntaxhighlight lang="bash" inline>nginx -t</syntaxhighlight>. Si la configuration est valide, il est nécessaire de recharger le service systemd avec <syntaxhighlight lang="bash" inline>systemctl reload nginx</syntaxhighlight> et mettre en place le chiffrement ssl avec <syntaxhighlight lang="bash" inline>certbot --nginx --domain auth.linarphy.net --deploy-hook=/usr/share/keycloak/certs/hook.sh</syntaxhighlight>. | |||
Vérifier ensuite sur un navigateur l'accès au service sur le protocole https. | |||
Modifier ensuite le fichier <code>/etc/nginx/sites-available/auth.linarphy.net</code> avec le contenu suivant: | |||
<syntaxhighlight lang="nginx" line="1"> | |||
server { | |||
# adapted from https://github.com/keycloak/keycloak/discussions/13441 (Igortorrente) | |||
server_name auth.linarphy.net; | |||
listen [::]:443 ssl ipv6only=on; # managed by Certbot | |||
listen 443 ssl; # managed by Certbot | |||
proxy_set_header Host $host; | |||
proxy_set_header X-Real-IP $remote_addr; | |||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |||
proxy_set_header X-Forwarded-Host $host; | |||
proxy_set_header X-Forwarded-Proto $scheme; | |||
location / { | |||
return 301 https://$host/realms/linarphy.net/account/#/; | |||
} | |||
location / { | |||
proxy_pass https://localhost:8127; | |||
} | |||
location /admin/ { | |||
deny all; | |||
allow {private-ip}; | |||
proxy_pass https://localhost:8127; | |||
} | |||
location /health/ { | |||
deny all; | |||
allow {private-ip}; | |||
proxy_pass https://localhost:8127; | |||
} | |||
location /js/ { | |||
proxy_pass https://localhost:8127; | |||
} | |||
location /metrics/ { | |||
deny all; | |||
allow {private-ip}; | |||
proxy_pass https://localhost:8127; | |||
} | |||
location /realms/ { | |||
proxy_pass https://localhost:8127; | |||
} | |||
location /resources/ { | |||
proxy_pass https://localhost:8127; | |||
} | |||
ssl_certificate /etc/letsencrypt/live/auth.linarphy.net/fullchain.pem; # managed by Certbot | |||
ssl_certificate_key /etc/letsencrypt/live/auth.linarphy.net/privkey.pem; # managed by Certbot | |||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot | |||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot | |||
} | |||
server { | |||
server_name auth.linarphy.net; | |||
listen 80; | |||
listen [::]:80; | |||
location / { | |||
return 301 https://$host$request_uri; | |||
} | |||
return 404; # managed by Certbot | |||
} | |||
</syntaxhighlight> | |||
==== Base de donnée ==== | |||
En tant qu'utilisateur '''postgres''', lancer la commande <syntaxhighlight lang="bash" inline>psql</syntaxhighlight> puis exécuter les commandes suivantes: | |||
* <syntaxhighlight lang="postgresql-console" inline>CREATE DATABASE keycloak;</syntaxhighlight> | |||
* <syntaxhighlight lang="postgresql-console" inline>CREATE USER keycloak WITH ENCRYPTED PASSWORD '{keycloak-postgresql-password}';</syntaxhighlight> | |||
* <syntaxhighlight lang="postgresql-console" inline>GRANT ALL PRIVILEGES ON DATABASE keycloak TO keycloak;</syntaxhighlight> | |||
* <syntaxhighlight lang="postgresql-console" inline>\c keycloak</syntaxhighlight> | |||
* <syntaxhighlight lang="postgresql-console" inline>GRANT ALL ON SCHEMA public TO keycloak;</syntaxhighlight> | |||
* <syntaxhighlight lang="postgresql-console" inline>\q</syntaxhighlight> | |||
==== Systemd ==== | |||
Lancer la commande <syntaxhighlight lang="bash" inline>systemctl edit --full --force keycloak.service</syntaxhighlight> pour écrire l'unité systemd suivante avec l'éditeur de votre choix ([[systemd]] utilise la variable d'environnement '''EDITOR'''): | |||
<syntaxhighlight lang="systemd" line="1"> | |||
[Unit] | |||
Description=Keycloak authentication server connected to the FreeIPA LDAP | |||
Documentation=https://keycloak.org/documentation | |||
After=network-online.target | |||
[Service] | |||
User=keycloak | |||
Restart=on-failure | |||
RestartSec=2s | |||
WorkingDirectory=/usr/share/keycloak | |||
ExecStart=/usr/share/keycloak/bin/kc.sh start --optimized | |||
TimeoutStopSec=10s | |||
KillSignal=SIGTERM | |||
KillMode=process | |||
SendSIGKILL=no | |||
SuccessExitStatus=143 | |||
[Install] | |||
WantedBy=multi-user.target | |||
</syntaxhighlight> | |||
Puis créer un second fichier de configuration supplémentaire avec <syntaxhighlight lang="bash" inline>systemctl edit keycloak.service</syntaxhighlight> et y écrire: | |||
<syntaxhighlight lang="systemd" line="1"> | |||
[Service] | |||
Environment="JAVA_HOME=/usr/share/openjdk/21" | |||
</syntaxhighlight> | |||
Pour mieux organiser la configuration, modifier le nom du fichier de réécriture avec <syntaxhighlight lang="bash" inline>mv /etc/systemd/system/keycloak.service.d/override.conf /etc/systemd/system/keycloak.service.d/env.conf</syntaxhighlight>. | |||
==== Configuration ==== | |||
Toute cette étape sera suivie par l'utilisateur '''keycloak''' dans le dossier <code>/usr/share/keycloak/</code>. | |||
D'abord, construisez la configuration avec la commande <syntaxhighlight lang="bash" inline>./bin/kc.sh build</syntaxhighlight> jusqu'à attendre la fin, puis lancer une première fois keycloak avec <syntaxhighlight lang="bash" inline>./bin/kc.sh start</syntaxhighlight>. Une fois que le message ''(main) Installed features: [...]'' s'affiche, appuyer sur '''Ctrl+C''' pour arrêter le programme. | |||
Si tout allait bien, il aurait suffit de définir les variables d'environnement '''KC_BOOTSTRAP_ADMIN_USERNAME''' et '''KC_BOOTSTRAP_ADMIN_PASSWORD''' pour définir respectivement le nom d'utilisateur et le mot de passe de l'administrateur du service, puis de lancer les commandes précédentes. Malheureusement, le monde n'est pas parfait. Du coup il est nécessaire d'effectuer la commande <syntaxhighlight lang="bash" inline>./bin/kc.sh bootstrap-admin user</syntaxhighlight> puis de définir le nom d'utilisateur et le mot de passe de l'administrateur. | |||
==== Finalisation ==== | |||
Activer et lancer le service [[systemd]] en exécutant <syntaxhighlight lang="bash" inline>systemctl enable keycloak</syntaxhighlight> puis <syntaxhighlight lang="bash" inline>systemctl start keycloak</syntaxhighlight>. | |||
=== Configuration post-installation === | |||
==== Création du realm ==== | |||
Une fois connecté sur le nouveau site, cliquer sur le menu déroulant en haut à gauche ('''Keycloak''' master) et cliquer sur '''Create realm'''. Et définir son nom. C'est ce ''realm'' qui va relier l'authentification de tous les services. | |||
==== Liaison avec FreeIPA ==== | |||
Dans l'onglet "Fédération utilisateur" du nouveau ''realm'', ajouter un nouveau fournisseur '''LDAP''' et y insérer la configuration suivante (les entrées non définie sur celui-ci sont laissé par défaut): | |||
{| class="wikitable" | |||
|+ | |||
!clef | |||
!valeur | |||
|- | |||
|vendor | |||
|Red Hat Directory Server | |||
|- | |||
|connection URL | |||
|ldaps://admin0.linarphy.net:636 | |||
|- | |||
|enable StartTLS | |||
|Off | |||
|- | |||
|user truststore SPI | |||
|Always | |||
|- | |||
|bind DN | |||
|uid=admin,cn=users,cn=accounts,dc=linarphy,dc=net | |||
|- | |||
|bind credentials | |||
|{password-admin-freeipa} | |||
|- | |||
|edit mode | |||
|READ_ONLY | |||
|- | |||
|users DN | |||
|cn=users,cn=accounts,dc=linarphy,dc=net | |||
|- | |||
|username LDAP attribute | |||
|uid | |||
|- | |||
|RDN LDAP attribute | |||
|uid | |||
|- | |||
|UUID LDAP attribute | |||
|ipaUniqueID | |||
|- | |||
|user object classes | |||
|inetOrgPerson, organizationalPerson | |||
|- | |||
|search scope | |||
|One Level | |||
|- | |||
|import users | |||
|On | |||
|- | |||
|sync Registrations | |||
|On | |||
|} |
Dernière version du 8 décembre 2024 à 17:00
Keycloak est le service disponible sur l'adresse suivante. Il gère l'authentification des utilisateurs sur tous les autres services de l'architecture.
Configuration actuelle[modifier | modifier le wikicode]
Le service Nginx transfère les pages web du port 8127 (géré par Keycloak) vers le port 443 (https) sur le domaine wiki.linarphy.net
(serveur computing). Les données sont gérés par Postgresql via une base de donnée ayant pour nom keycloak et pour utilisateur keycloak. Cette instance stocké dans le dossier /usr/share/keycloak/
tourne sur la version 26.0.0 avec openjdk-21.0.2 (lui-même dans /usr/share/openjdk/21/
).
Installation[modifier | modifier le wikicode]
Prérequis[modifier | modifier le wikicode]
Procédure[modifier | modifier le wikicode]
Fichiers[modifier | modifier le wikicode]
La première étape consiste au téléchargement du service avec la commande curl -L https://github.com/keycloak/keycloak/releases/download/26.0.0/keycloak-26.0.0.tar.gz -o keycloak-26.0.0.tar.gz
en tant qu'utilisateur root. Le lien est récupéré sur la page de téléchargement. Le fichier keycloak-26.0.0.tar.gz peut ensuite être extrait avec la commande tar -xf keycloak-26.0.0.tar.gz
en tant qu'utilisateur root pour ensuite supprimer cette archive: rm keycloak-26.0.0.tar.gz
.
Le dossier peut ensuite être déplacé dans son emplacement final (/usr/share/keycloak/
) avec la commande mv keycloak-26.0.0 /usr/share/keycloak
(toujours en tant que root).
Java[modifier | modifier le wikicode]
Télécharger OpenJDK 21 avec la commande curl -L {lien-targz-openjdk-21} -o openjdk-21.tar.gz
en tant que root. Le lien vers l'archive est disponible ici. Puis extraire l'archive: tar -xf openjdk-21.tar.gz
et supprimer l'archive téléchargée: rm openjdk-21.tar.gz
. Si le dossier n'existe pas déjà, crée le dossier /usr/share/openjdk/
avec la commande mkdir /usr/share/openjdk
puis déplacer le dossier extrait vers son emplacement final: mv jdk-21.0.2 /usr/share/openjdk/21
.
Pour se lier au service LDAP du serveur FreeIPA, il est nécessaire d'ajouter les clefs publics des certificats utilisés pour sécuriser la connexion. L’utilisation de la commande /usr/share/openjdk/21/bin/keytool -v -import -file /etc/ipa/ca.crt -alias ipacrt -keystore /usr/share/openjdk/21/lib/security/cacerts
permet d'effectuer cette opération (ajouter la clef public du certificat du serveur au stockage de clef public de l'installation de java qui va être utilisé par Keycloak).
Permissions[modifier | modifier le wikicode]
Le service s'exécutera avec un utilisateur particulier (et non root) pour isoler le processus. Il est donc nécessaire de créer l'utilisateur local keycloak avec la commande adduser --system --no-create-home --group keycloak
en tant que root. La commande chown -R keycloak:keycloak /usr/share/keycloak/
pour donner les permissions du dossier à ce nouvel utilisateur.
Keycloak sera accessible via une connexion chiffré (https), et sa configuration nécessite l'accès à la clef privé et public utilisé pour cette connexion (comme Nginx). Pour protéger ces clefs et ne pas les rendre accessible à d'autres utilisateur que keycloak, un hook (script) sera mis en place pour être exécuté par Certbot. Il va donc être nécessaire de créer le dossier /usr/share/keycloak/certs
via la commande mkdir /usr/share/keycloak/certs
en tant que root (oui oui, pas keycloak pour le moment, c'est normal), puis de modifier ces permissions avec les commandes chown keycloak:keycloak /usr/share/keycloak/certs
et chmod 500 /usr/share/keycloak/certs
. Créer ensuite le fichier /usr/share/keycloak/certs/hook.sh
toujours en tant que root avec l'éditeur de sont choix contenant le script:
#!/usr/bin/env sh
# adapted from https://gist.github.com/Sternerson/file-ssl-deploy-hook-L1
KEYCLOAK_CERT_DIR=/usr/share/keycloak/certs
umask 077 # the certificate are not world readable during the copying
cp "${RENEWED_LINEAGE}/privkey.pem" "${KEYCLOAK_CERT_DIR}/privkey.pem"
cp "${RENEWED_LINEAGE}/fullchain.pem" "${KEYCLOAK_CERT_DIR}/fullchain.pem"
chown keycloak:keycloak "${KEYCLOAK_CERT_DIR}/privkey.pem"
chown keycloak:keycloak "${KEYCLOAK_CERT_DIR}/fullchain.pem"
chmod 400 "${KEYCLOAK_CERT_DIR}/privkey.pem"
chmod 400 "${KEYCLOAK_CERT_DIR}/fullchain.pem"
Exécuter la commande chmod +x /usr/share/keycloak/hook.sh
pour permettre l'exécution du script. Les permissions de ce fichier ne vont pas être autrement modifié, le script ne sera exécuté que par l'utilisateur root.
Configuration[modifier | modifier le wikicode]
# Basic settings for running in production. Change accordingly before deploying the server.
# Database
# The database vendor.
#db=postgres
db=postgres
# The username of the database user.
#db-username=keycloak
db-username=keycloak
# The password of the database user.
#db-password=password
db-password={keycloak-postgresql-password}
# The full database JDBC URL. If not provided, a default URL is set based on the selected database vendor.
#db-url=jdbc:postgresql://localhost/keycloak
db-url=jdbc:postgresql://localhost/keycloak
# Observability
# If the server should expose healthcheck endpoints.
#health-enabled=true
health-enabled=true
# If the server should expose metrics endpoints.
#metrics-enabled=true
metrics-enabled=true
# HTTP
# The file path to a server certificate or certificate chain in PEM format.
#https-certificate-file=${kc.home.dir}conf/server.crt.pem
https-certificate-file=${kc.home.dir}/certs/fullchain.pem
# The file path to a private key in PEM format.
#https-certificate-key-file=${kc.home.dir}conf/server.key.pem
https-certificate-key-file=${kc.home.dir}/certs/privkey.pem
# The proxy address forwarding mode if the server is behind a reverse proxy.
#proxy=reencrypt
# Do not attach route to cookies and rely on the session affinity capabilities from reverse proxy
#spi-sticky-session-encoder-infinispan-should-attach-route=false
# Hostname for the Keycloak server.
#hostname=myhostname
hostname=auth.linarphy.net
## Added manually
proxy-headers=xforwarded
https-port=8127
Nginx[modifier | modifier le wikicode]
Créer le fichier /etc/nginx/sites-available/auth.linarphy.net
contenant la configuration Nginx suivante:
server {
server_name auth.linarphy.net;
listen 80;
listen [::]:80;
}
Puis créer un lien symbolique avec la commande ln -s /etc/nginx/sites-available/auth.linarphy.net /etc/nginx/sites-enabled/auth.linarphy.net
et tester la configuration via nginx -t
. Si la configuration est valide, il est nécessaire de recharger le service systemd avec systemctl reload nginx
et mettre en place le chiffrement ssl avec certbot --nginx --domain auth.linarphy.net --deploy-hook=/usr/share/keycloak/certs/hook.sh
.
Vérifier ensuite sur un navigateur l'accès au service sur le protocole https.
Modifier ensuite le fichier /etc/nginx/sites-available/auth.linarphy.net
avec le contenu suivant:
server {
# adapted from https://github.com/keycloak/keycloak/discussions/13441 (Igortorrente)
server_name auth.linarphy.net;
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
location / {
return 301 https://$host/realms/linarphy.net/account/#/;
}
location / {
proxy_pass https://localhost:8127;
}
location /admin/ {
deny all;
allow {private-ip};
proxy_pass https://localhost:8127;
}
location /health/ {
deny all;
allow {private-ip};
proxy_pass https://localhost:8127;
}
location /js/ {
proxy_pass https://localhost:8127;
}
location /metrics/ {
deny all;
allow {private-ip};
proxy_pass https://localhost:8127;
}
location /realms/ {
proxy_pass https://localhost:8127;
}
location /resources/ {
proxy_pass https://localhost:8127;
}
ssl_certificate /etc/letsencrypt/live/auth.linarphy.net/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/auth.linarphy.net/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
server_name auth.linarphy.net;
listen 80;
listen [::]:80;
location / {
return 301 https://$host$request_uri;
}
return 404; # managed by Certbot
}
Base de donnée[modifier | modifier le wikicode]
En tant qu'utilisateur postgres, lancer la commande psql
puis exécuter les commandes suivantes:
CREATE DATABASE keycloak;
CREATE USER keycloak WITH ENCRYPTED PASSWORD '{keycloak-postgresql-password}';
GRANT ALL PRIVILEGES ON DATABASE keycloak TO keycloak;
\c keycloak
GRANT ALL ON SCHEMA public TO keycloak;
\q
Systemd[modifier | modifier le wikicode]
Lancer la commande systemctl edit --full --force keycloak.service
pour écrire l'unité systemd suivante avec l'éditeur de votre choix (systemd utilise la variable d'environnement EDITOR):
[Unit]
Description=Keycloak authentication server connected to the FreeIPA LDAP
Documentation=https://keycloak.org/documentation
After=network-online.target
[Service]
User=keycloak
Restart=on-failure
RestartSec=2s
WorkingDirectory=/usr/share/keycloak
ExecStart=/usr/share/keycloak/bin/kc.sh start --optimized
TimeoutStopSec=10s
KillSignal=SIGTERM
KillMode=process
SendSIGKILL=no
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target
Puis créer un second fichier de configuration supplémentaire avec systemctl edit keycloak.service
et y écrire:
[Service]
Environment="JAVA_HOME=/usr/share/openjdk/21"
Pour mieux organiser la configuration, modifier le nom du fichier de réécriture avec mv /etc/systemd/system/keycloak.service.d/override.conf /etc/systemd/system/keycloak.service.d/env.conf
.
Configuration[modifier | modifier le wikicode]
Toute cette étape sera suivie par l'utilisateur keycloak dans le dossier /usr/share/keycloak/
.
D'abord, construisez la configuration avec la commande ./bin/kc.sh build
jusqu'à attendre la fin, puis lancer une première fois keycloak avec ./bin/kc.sh start
. Une fois que le message (main) Installed features: [...] s'affiche, appuyer sur Ctrl+C pour arrêter le programme.
Si tout allait bien, il aurait suffit de définir les variables d'environnement KC_BOOTSTRAP_ADMIN_USERNAME et KC_BOOTSTRAP_ADMIN_PASSWORD pour définir respectivement le nom d'utilisateur et le mot de passe de l'administrateur du service, puis de lancer les commandes précédentes. Malheureusement, le monde n'est pas parfait. Du coup il est nécessaire d'effectuer la commande ./bin/kc.sh bootstrap-admin user
puis de définir le nom d'utilisateur et le mot de passe de l'administrateur.
Finalisation[modifier | modifier le wikicode]
Activer et lancer le service systemd en exécutant systemctl enable keycloak
puis systemctl start keycloak
.
Configuration post-installation[modifier | modifier le wikicode]
Création du realm[modifier | modifier le wikicode]
Une fois connecté sur le nouveau site, cliquer sur le menu déroulant en haut à gauche (Keycloak master) et cliquer sur Create realm. Et définir son nom. C'est ce realm qui va relier l'authentification de tous les services.
Liaison avec FreeIPA[modifier | modifier le wikicode]
Dans l'onglet "Fédération utilisateur" du nouveau realm, ajouter un nouveau fournisseur LDAP et y insérer la configuration suivante (les entrées non définie sur celui-ci sont laissé par défaut):
clef | valeur |
---|---|
vendor | Red Hat Directory Server |
connection URL | ldaps://admin0.linarphy.net:636 |
enable StartTLS | Off |
user truststore SPI | Always |
bind DN | uid=admin,cn=users,cn=accounts,dc=linarphy,dc=net |
bind credentials | {password-admin-freeipa} |
edit mode | READ_ONLY |
users DN | cn=users,cn=accounts,dc=linarphy,dc=net |
username LDAP attribute | uid |
RDN LDAP attribute | uid |
UUID LDAP attribute | ipaUniqueID |
user object classes | inetOrgPerson, organizationalPerson |
search scope | One Level |
import users | On |
sync Registrations | On |