For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| [Plexrepo] | |
| name=plexrepo | |
| baseurl=https://downloads.plex.tv/repo/rpm/\$basearch/ | |
| enabled=1 | |
| gpgkey=https://downloads.plex.tv/plex-keys/PlexSign.key | |
| gpgcheck=1 |
| filter ColorPattern( [string]$Pattern, [ConsoleColor]$Color, [switch]$SimpleMatch ) { | |
| if( $SimpleMatch ) { $Pattern = [regex]::Escape( $Pattern ) } | |
| $split = $_ -split $Pattern | |
| $found = [regex]::Matches( $_, $Pattern, 'IgnoreCase' ) | |
| for( $i = 0; $i -lt $split.Count; ++$i ) { | |
| Write-Host $split[$i] -NoNewline | |
| Write-Host $found[$i] -NoNewline -ForegroundColor $Color | |
| } |
| #!/usr/bin/env perl | |
| ## Creates a json file ready for _bulk ES API | |
| ## tested with strawberry-perl-5.18.1.1-64bit | |
| ## 2013-12-22 Author : FRN | |
| use strict; use warnings; | |
| use JSON; ## brings json_encode | |
| use Tie::Array::CSV; ## brings @Array from csv file |
| ******************************************************************************* | |
| rem Auteur : ITEC/EUR/PRO | |
| rem | |
| rem Uproc : « Nom de l’uproc » | |
| rem | |
| rem Titre : « description de l’uproc » | |
| rem | |
| rem Date : « Date de création de l’uproc » | |
| rem | |
| rem Paramètres : « préciser les paramètres s’il y en a » |
| La version 5 de DOLLAR UNIVERSE permet de tracer chaque action faite par les utilisateurs du produit | |
| (via le GUI ou en mode commande). Pour activer ces traces, il faut positionner la variable U_LOG_TRANS a Y | |
| (ou O ou y ou o) : | |
| - dans les fichiers uxsetenv, uxsetenv_csh et uxsetenv.ksh sur Unix | |
| - dans les fichiers uxsetenv, universe.def et ’societe’.def sur Windows | |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| $ curl -XPUT http://127.0.0.1:9200/_template/logstash_per_index -d @file.json |