From 17442d9048080bd35d835e485b65b605b1950b30 Mon Sep 17 00:00:00 2001 From: wheezykw Date: Wed, 31 Oct 2018 10:52:25 -0400 Subject: [PATCH] Added Tomcat section to guide. (#20451) * Fixed folder misspelling. * Setting up initial folder and installation. --- guide/english/tomcat/index.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 guide/english/tomcat/index.md diff --git a/guide/english/tomcat/index.md b/guide/english/tomcat/index.md new file mode 100644 index 0000000000..cfec2379b1 --- /dev/null +++ b/guide/english/tomcat/index.md @@ -0,0 +1,19 @@ +--- +title: Tomcat +--- +## Apache + +The Apache Tomcat Server, commonly known as Tomcat, is a free and open-source cross-platform web server, released under the terms of [Apache License 2.0](https://en.wikipedia.org/wiki/Apache_License). Tomcat is developed and maintained by an open community of developers under the auspices of the Apache Software Foundation. Tomcat is a Java based web server. + + +### Installation + +#### On Ubuntu +``` +sudo apt-get install tomcat7 +``` +#### On Centos +``` +sudo yum install tomcat +```` +