Public visé : administrateurs, superviseurs médicaux, agents des opérations et du support. Périmètre : modules de supervision temps réel du back-office — Live Operations, Parcours Patients et Présence Utilisateurs. Dernière mise à jour : 29 mai 2026.
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/bash | |
| # Check if the user provided the number of days | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 <days> [directory]" | |
| echo "Example: $0 5 /path/to/videos" | |
| exit 1 | |
| fi | |
| # Get number of days from the first argument |
DevSecOps integrates security into every phase of the DevOps lifecycle. It ensures that security is a shared responsibility among development, operations, and security teams, rather than being an isolated stage at the end of the development process.
The goal is to identify and fix security issues early, automate security tasks, and maintain a secure infrastructure and codebase throughout the software delivery pipeline.
- Shift Left on Security:
- Security practices are integrated early in the development lifecycle, starting from the planning and coding stages.
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
| # source: https://forum.proxmox.com/threads/removing-deleting-a-created-cluster.18887/ | |
| #/bin/sh | |
| # stop service | |
| systemctl stop pvestatd.service | |
| systemctl stop pvedaemon.service | |
| systemctl stop pve-cluster.service | |
| systemctl stop corosync | |
| systemctl stop pve-cluster | |
| killall pmxcfs |
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
| timeout 120 bash -c -- 'while true; do curl localhost; sleep $((RANDOM % 4)) ; done' |
generated via plantuml
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
| ## Cluster | |
| ### Cluster info | |
| kubectl cluster-info | |
| kubectl get nodes | |
| kubectl describe node | |
| ### Listar os eventos | |
| kubectl get events |
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
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
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
| # =============================== | |
| # = DATA SOURCE | |
| # =============================== | |
| # Set here configurations for the database connection | |
| spring.datasource.url=jdbc:postgresql://localhost:5432/springbootdb | |
| spring.datasource.username=postgres | |
| spring.datasource.password=postgres@123 | |
| spring.datasource.driver-class-name=org.postgresql.Driver | |
| # Keep the connection alive if idle for a long time (needed in production) | |
| spring.datasource.testWhileIdle=true |
NewerOlder
