docker run --name keycloak -p 8080:8080 quay.io/keycloak/keycloak:16.1.1
docker exec keycloak /opt/jboss/keycloak/bin/add-user-keycloak.sh -u admin -p admin
docker container restart keycloak
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| echo "options sony-laptop kbd_backlight=0" | sudo tee /etc/modprobe.d/sony-laptop.conf | |
| sudo rmmod -v sony-laptop; sudo modprobe -v sony-laptop kbd_backlight=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Document</title> | |
| <style> | |
| body { | |
| background-color: #f8f8f8; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| Min(IT.DATE) AS DATE_MIN, | |
| Max(IT.DATE) AS DATE_MAX, | |
| DateDiff("d", Min([Date]), Max([Date])) AS DaysElapsed, | |
| COUNT(*) AS ITEMS | |
| FROM | |
| IT; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| Stop := "163000" ; hhmiss | |
| FormatTime,TargetTime,,yyyyMMdd%Stop% | |
| Time := A_Now | |
| Time -= %TargetTime%, s |
Vous devrez télécharger un JDK de même version que celle utilisée par votre application.
Assurez-vous que la variable JAVA_HOME pointe vers la nouvelle version de Java.
Vérifier que le keytool peut analyser le certificat et afficher son contenu :
# <cert> = ca.pem
keytool -v -printcert -file <cert>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # LiveCD rescue | |
| sudo su | |
| fdisk -l | |
| mount /dev/sday boot/ | |
| mount /dev/sdax /mnt | |
| mount --bind /proc /mnt/proc | |
| mount --bind /sys /mnt/sys | |
| mount --bind /dev /mnt/dev | |
| mount --bind /dev/pts /mnt/dev/pts | |
| chroot /mnt |
NewerOlder