-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello coucou
157 lines (75 loc) · 3.76 KB
/
hello coucou
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
hello coucou
ISO
https://easyformers-my.sharepoint.com/:f:/g/personal/dorian_manzanares_easyformers_fr/Eg68su_0hqhIjfDeRnaK3oMBTB7khWiDU2q6SGB7OJ7euA?e=FjNOO4
Livres
https://easyformers-my.sharepoint.com/:f:/g/personal/dorian_manzanares_easyformers_fr/EmonxWtDmQtAjFRXy35j56gBZl1ufOG11aB02ERkdiKZdA?e=m8q5Ju
Vidéos
https://easyformers-my.sharepoint.com/:f:/g/personal/dorian_manzanares_easyformers_fr/ErHdVecFYD1GmCOO3bdaMuQBp9-sxAofrMFfL85eT_5wKg?e=MBGP6z
Certif :
https://cloud.google.com/learn/certification?hl=fr#why-get-google-cloud-certified
https://www.aws.training/LearningLibrary?query=&filters=Language%3A1%20DeliveryFormat%3A1%2C4%2C6%2C7%2C8&from=0&size=15&sort=_score
https://www.cloudskillsboost.google/paths
https://learn.microsoft.com/fr-fr/training/browse/
https://learn.microsoft.com/fr-fr/azure/architecture/browse/
https://aws.amazon.com/fr/blogs/architecture/
___________________________________________________________________________________
------Docker :
#Installation de Docker
apt update && apt upgrade -y
apt install docker.io -y
#Déploiement d'un conteneur simple basé sur debian
docker run --name debian -dit -p80:80 -p2222:22 debian:latest
# On rentre dans le conteneur
docker exec -it 2d8ab8ca11b2 /bin/bash
#Installer apache2 dans le conteneur
service apache2 status
service apache2 start
#On remplace la page par défaut par notre texte
echo "Hello World 16:30 " > /var/www/html/index.html
service ssh restart
ssh root@localhost -p2222
https://temp-mail.io/fr
https://temp-mail.us/fr/
https://yopmail.com/fr/
https://online-sms.org/fr
https://www.noip.com/
C:\Windows\System32\drivers\etc
http://deedevops.sytes.net/
______________________________________________________________
Powershell Azure
---------------------------------------------------
# Se connecter à votre tenant
az login
Connect-AzAcount
#Création d'un réseau virtuel
$myVnet = New-AzVirtualNetwork -ResourceGroupName greta -Location NorthEurope -Name myVnet -AddressPrefix 10.0.0.0/16
#Vérification de la création du vnet
Get-AzVirtualNetwork -Name myVnet
#Création d'un sous réseau
$mySubnet = Add-AzVirtualNetworkSubnetConfig -Name mySubnet -AddressPrefix 10.0.0.0/24 -VirtualNetwork $myVnet
#Vérification des informations du sous-réseau
Get-AzVirtualNetworkSubnetConfig -Name mySubnet -VirtualNetwork $myVnet
#Association du sous réseau au Vnet
$mySubnet | Set-AzVirtualNetwork
-------------------------------------------------
Utilisation des commandes az
#Création d'un vnet et subnet
az network vnet create -g greta -n myVnet --address-prefix 10.0.0.0/16 --subnet-name mySubnet1 --subnet-prefixes 10.0.1.0/24
#Création d'un second sous-réseau
az network vnet subnet create -g greta --vnet-name myVnet -n mySubnet2 --address-prefix 10.0.2.0/24
#Création d'un NSG
az network nsg create -g greta -n myNsg
#Création d'une carte réseau lié au vnet et nsg
az network nic create -g greta --vnet-name myVnet --subnet mySubnet1 -n myNic1 --network-security-group myNsg
#Création d'une seconde carte lié au même nsg
az network nic create -g greta --vnet-name myVnet --subnet mySubnet2 -n myNic2 --network-security-group myNsg
#Lister certaines images
az vm image list
#Création d'une vm associée à nos cartes réseaux
az vm create --name myVm -g greta --image "Ubuntu2204" --size "Standard_B1ls" --authentication-type password --admin-password "Azerty123456" --admin-username "azureuser" --location "NorthEurope" --nics myNic1 myNic2
#Vérifier les cartes réseaux
Get-AzNetworkInterface -Name myNic1 -ResourceGroupName greta
Get-AzNetworkInterface -Name myNic2 -ResourceGroupName greta
------------------------------------------------------
AD connect
https://drive.google.com/file/d/1dwCUtclbF6_jJ3tOvP6XTMYV3m5VV9H-/view?usp=sharing