« 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
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]]

Version du 18 mars 2024 à 15:21

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