« Guacamole : Changer le port 8080 Tomcat » : différence entre les versions
De www.yakakliker.org
(Page créée avec « Par défaut, Guacamole écoute sur le port 8080, nous allons modifier Tomcat afin qu'il écoute sur le port http par défaut (80) <syntaxhighlight lang="bash"> sudo nano /etc/tomcat9/server.xml </syntaxhighlight><syntaxhighlight lang="bash" line="1"> <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> </syntaxhighlight> Catégorie:Guacamole Catégorie:Tomcat Catégorie:Linux ») |
Aucun résumé des modifications |
||
(2 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 10 : | Ligne 10 : | ||
</syntaxhighlight> | </syntaxhighlight> | ||
* Redémarrer les services | |||
<syntaxhighlight lang="bash"> | |||
sudo systemctl restart tomcat9 guacd mysql | |||
</syntaxhighlight> | |||
[[Catégorie:Guacamole]] | [[Catégorie:Guacamole]] | ||
[[Catégorie:Tomcat]] | [[Catégorie:Tomcat]] | ||
[[Catégorie:Linux]] | [[Catégorie:Linux]] | ||
<html> | |||
<script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script> | |||
<script> | |||
kofiWidgetOverlay.draw('yakakliker', { | |||
'type': 'floating-chat', | |||
'floating-chat.donateButton.text': 'Café', | |||
'floating-chat.donateButton.background-color': '#00b9fe', | |||
'floating-chat.donateButton.text-color': '#fff' | |||
}); | |||
</script> | |||
</html> | |||
<html> | |||
<a href="https://www.compteurdevisite.com" title="compteur web gratuit sans pub"><img src="https://counter6.optistats.ovh/private/compteurdevisite.php?c=b4epghealnwlf7wuq7gn3ygll9aywrfx" border="0" title="compteur web gratuit sans pub" alt="compteur web gratuit sans pub"></a> | |||
</html> |
Dernière version du 17 février 2025 à 17:47
Par défaut, Guacamole écoute sur le port 8080, nous allons modifier Tomcat afin qu'il écoute sur le port http par défaut (80)
sudo nano /etc/tomcat9/server.xml
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
- Redémarrer les services
sudo systemctl restart tomcat9 guacd mysql