Skip to content

Commit d0993b9

Browse files
committed
updated linux version instructions
1 parent 479a8d3 commit d0993b9

1 file changed

Lines changed: 10 additions & 13 deletions

File tree

  • docs/els-for-applications/apache-tomcat

docs/els-for-applications/apache-tomcat/README.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ Apache® and Apache Tomcat® are either registered trademarks or trademarks of t
44

55
<br>
66

7-
TuxCare's Endless Lifecycle Support (ELS) for Apache Tomcat® provides security patches, and selected bug fixes, that are integral to the stable operation of applications running on these versions of Apache Tomcat® core components such as Coyote, Catalina, Jasper, etc. These components have either reached their end of standard support from vendors or have reached End of Life (EOL).
7+
TuxCare's Endless Lifecycle Support (ELS) for Apache Tomcat® provides security patches and selected bug fixes that are integral to the stable operation of applications running on these versions of Apache Tomcat® core components such as Coyote, Catalina, Jasper, etc. These components have either reached their end of standard support from vendors or have reached End of Life (EOL).
88
Our ELS for Apache Tomcat® service is designed to provide solutions for organizations that are not yet ready to migrate to newer versions and that are seeking long-term stability for their legacy Apache Tomcat® applications.
99

10-
This guide outlines the steps needed for Apache Tomcat server setup and configuration.
10+
This guide outlines the steps needed for Apache Tomcat® server setup and configuration.
1111

1212
:::tip
1313
Apache Tomcat® is also available for installation as a library for Maven and Gradle projects. You can find the corresponding instructions [here](/els-for-libraries/apache-tomcat/).
1414
:::
1515

1616
## Supported Versions
1717

18-
* Apache Tomcat® 8.5.100, 9.0.50, 9.0.75, 9.0.83, 9.0.87, 9.0.90, 9.0.100, 10.1.18
18+
* Apache Tomcat® 8.5.100, 9.0.46, 9.0.50, 9.0.75, 9.0.83, 9.0.87, 9.0.90, 9.0.100, 10.1.18, 10.1.42
1919

2020
## Installation
2121

@@ -34,23 +34,23 @@ Apache Tomcat® is also available for installation as a library for Maven and Gr
3434

3535
1. **Prepare a `tomcat` group**
3636

37-
* Create a `tomcat` group:
37+
Create a `tomcat` group:
3838

3939
```text
4040
sudo groupadd tomcat
4141
```
4242

4343
2. **Create a `tomcat` user**
4444

45-
* Create a new user as a member of the `tomcat` group, with a home directory of `/opt/tomcat` and the login shell set to `/bin/false`.
45+
Create a new user as a member of the `tomcat` group, with a home directory of `/opt/tomcat` and the login shell set to `/bin/false`.
4646

4747
```text
4848
sudo useradd -s /bin/false -g tomcat -d /opt/tomcat tomcat
4949
```
5050

5151
3. **Download the TuxCare build**
5252

53-
* Download from TuxCare using your credentials. For example, Apache Tomcat® 8.5.100:
53+
Download from TuxCare using your credentials. For example, Apache Tomcat® 8.5.100:
5454

5555
```text
5656
curl -u USERNAME:PASSWORD -O https://nexus.repo.tuxcare.com/repository/els_java/org/apache/tomcat/tomcat/8.5.100-tuxcare.3/tomcat-8.5.100-tuxcare.3.tar.gz
@@ -80,19 +80,16 @@ Apache Tomcat® is also available for installation as a library for Maven and Gr
8080
cd /opt/tomcat
8181
```
8282

83-
* Set the group of the installation to `tomcat`:
83+
* Change ownership of the installation to the `tomcat` group:
8484

8585
```text
8686
sudo chgrp -R tomcat /opt/tomcat
8787
```
8888

89-
* Give the `tomcat` group read access to `conf` and its contents, and execute access on the `conf` directory:
89+
* Give the `tomcat` group read access to `conf` and its contents, and execute access to the `conf` directory:
9090

9191
```text
9292
sudo chmod -R g+r conf
93-
```
94-
95-
```text
9693
sudo chmod g+x conf
9794
```
9895

@@ -132,7 +129,7 @@ Apache Tomcat® is also available for installation as a library for Maven and Gr
132129
sudo -u tomcat /opt/tomcat/bin/startup.sh
133130
```
134131

135-
8. **Verify the installation and stop the server**
132+
8. **Verify installation**
136133

137134
* Go to [http://localhost:8080/](http://localhost:8080/). You should see the default Apache Tomcat® homepage.
138135

@@ -142,7 +139,7 @@ Apache Tomcat® is also available for installation as a library for Maven and Gr
142139
curl http://localhost:8080
143140
```
144141

145-
* To stop the server:
142+
9. **Stop Apache Tomcat®**
146143

147144
```text
148145
sudo -u tomcat /opt/tomcat/bin/shutdown.sh

0 commit comments

Comments
 (0)