Voici une début de doc sur tomcat 9
1 – Redirection 8080 vers 80
http://www.it-connect.fr/appliquer-des-regles-iptables-au-demarrage/
2 – Mise en place de l’auto-boot
Voici un tutoriel sur l’installation d’un Tomcat 8
- Source : http://www3.ntu.edu.sg/home/ehchua/programming/howto/Ubuntu_HowTo.html#tomcat
Créer et initializer un script appelé « tomcat8″ sous le dossier « /etc/init.d » , with the following contents. Check your tomcat installed directory in CATALINA_HOME
.
Shell
Shell
Set the permissions (executable):
$ sudo chmod 755 /etc/init.d/tomcat8
To start/stop the tomcat8 service:
// To start $ sudo service tomcat8 start $ sudo /etc/init.d/tomcat8 start // same as above // To stop $ sudo service tomcat8 stop $ sudo /etc/init.d/tomcat8 stop // same as above
To start tomcat8 service automatically after boot:
$ sudo update-rc.d tomcat8 defaults
Aucun commentaire jusqu'à présent.