Apache tomcat latest version
Author: a | 2025-04-24
Users of affected products are advised to update to the latest version. Affected Products . Apache Tomcat 9.0.0.M1 – . Apache Tomcat 11.0.0-M1 – 11.0.1. Apache Tomcat 10.1.0-M1 – 2025 to update to the applicable version and the latest version. Apache Tomcat . Apache Tomcat 11.0.2. Apache Tomcat .
Upgrading Apache Tomcat to the latest version available
Home » Articles » Linux » HereApache Tomcat 9 is not available from the standard RHEL distributions, so this article provides information about the manual installation and basic configuration of Apache Tomcat 9 on RHEL and its clones from tarballs. The tarball approach to installation is largely unchanged compared to previous tomcat versions. Downloads Installation Checking the Status of Tomcat Configuration Files Enabling HTML Management Access Deploying Applications Java and Tomcat UpgradesRelated articles. Apache Tomcat 7 Installation on Linux (RHEL and clones) Apache Tomcat 8 Installation on Linux (RHEL and clones) Apache Tomcat : Enable HTTPSDownloadsDownload the following software. This article assumes these downloads are present in the "/tmp" directory on the server. OpenJDK 11 Downloads (I used OpenJDK11U-jdk_x64_linux_hotspot_11.0.10_9.tar.gz) Apache Tomcat (I used apache-tomcat-9.0.45.tar.gz)InstallationCreate a user called "tomcat" to own the Tomcat installation. We also create a directory called "/u01" to hold all the config, and make sure that it owned by the new "tomcat" user.# useradd tomcat# mkdir -p /u01# chown tomcat:tomcat /u01Install the JDK from the tarball under the "/u01/java" directory. We unzip it to create a new directory, which includes the version number, but use a symbolic link so we can always use the same path for the JAVA_HOME environment variable, regardless of the version.# su - tomcat$ mkdir -p /u01/java$ cd /u01/java$ tar xzf OpenJDK11U-jdk_x64_linux_hotspot_11.0.10_9.tar.gz$ ln -s jdk-11.0.10+9 latestInstall Tomcat from the tarball under the "/u01/tomcat" directory. We unzip it to create a new directory, which includes the version number, but use a symbolic link so we can always use the same path for the CATALINA_HOME environment variable, regardless of the version.$ mkdir -p /u01/tomcat$ cd /u01/tomcat$ tar xzf /tmp/apache-tomcat-9.0.45.tar.gz$ ln -s apache-tomcat-9.0.45 latestWe want to separate the config from the binaries, to make future upgrades easier, so we will create a new directory to act as the CATALINA_BASE location, and seed it by copying the relevant directories to the new directory. We are using a sub-directory called "instance1" to allow for multiple instances, but that is not necessary if you only plan to have a single Tomcat instance running.$ mkdir -p /u01/config/instance1$ cp -r /u01/tomcat/latest/conf /u01/config/instance1/$ cp -r /u01/tomcat/latest/logs /u01/config/instance1/$ cp -r /u01/tomcat/latest/temp /u01/config/instance1/$ cp -r /u01/tomcat/latest/webapps /u01/config/instance1/$ cp -r /u01/tomcat/latest/work /u01/config/instance1/Set the following environment variables and append them to the "/home/tomcat/.bash_profile" so they are set for subsequent logins.export JAVA_HOME=/u01/java/latestexport CATALINA_HOME=/u01/tomcat/latestexport CATALINA_BASE=/u01/config/instance1Start and stop Tomcat using the following scripts.$ $CATALINA_HOME/bin/startup.sh$ $CATALINA_HOME/bin/shutdown.shThe Tomcat logs are written Select the topic Apache Tomcat is a mandatory component required to run the ESET PROTECT Web Console.Before upgrading1.Execute the following command to see the installed version of Apache Tomcat (in some cases, the folder name is tomcat7 or tomcat8):cd /usr/share/tomcat/bin && ./version.sh2.If a later version is available:a.Ensure that the later version is supported.b.Back up the server.xml Tomcat configuration file. (File location may vary based on the Linux distribution, for example /etc/tomcat9/server.xml).Upgrade procedure1.Run the following command to stop the Apache Tomcat service (in some cases, the service name is tomcat9):sudo systemctl stop tomcat2.Upgrade Apache Tomcat and Java.Packages may have different names and may not be available in the default repository•Example package names below may differ from your Linux distribution repository packages.•The default repository of your Linux distribution may not contain the latest supported version of Apache Tomcat and Java.•For installation and configuration of Apache Tomcat, see the Apache Tomcat documentation.Linux distributionTerminal commandsDebian and Ubuntu distributionssudo apt-get updatesudo apt-get install openjdk-17-jdk tomcat9CentOS and Red Hat distributionsyum updateyum install java-17-openjdk tomcatSUSE Linuxzypper refreshsudo zypper install java-17-openjdk tomcat93.Replace the server.xml file with the server.xml file from your backup.4.Ensure the HTTPS connection for Apache Tomcat is configured correctly.See the additional Web Console configuration for enterprise solutions or low-performance systems.If you have upgraded Java, ensure to configure Apache Tomcat to use the latest Java package installed on your system.After upgrading Apache Tomcat to a later major version (for example, 8.x to 9.x):1.Deploy ESET PROTECT Web Console again (see ESET PROTECT Web Console installation - Linux)2.Reuse %TOMCAT_HOME%/webapps/era/WEB-INF/classes/sk/eset/era/g2webconsole/server/modules/config/EraWebServerConfig.propertiesTomcat Versions - Apache Tomcat - Apache Software Foundation
Security Article Type Security KB CVE Identifier CVE-2022-34305 Issue Summary See the 'Details' section below for details on each incorrectly identified CVE. Details In Apache Tomcat 10.1.0-M1 to 10.1.0-M16, 10.0.0-M1 to 10.0.22, 9.0.30 to 9.0.64, and 8.5.50 to 8.5.81, the Form authentication example in the examples web application displayed user provided data without filtering, exposing an XSS vulnerability.NetWorker version 19.6.1.1 build 94 has Apache Tomcat 9.0.52.The latest NetWorker version 19.7.0.1 build 54 has Apache Tomcat 9.0.58. Recommendations Dell NetWorker engineering investigated this issue. Remediation is planned for a future release when Apache Tomcat 9.0.65 is implemented. Releases are expected to include Apache Tomcat 9.0.65. 19.7.0.2 - Tentative release October 22, 2022 19.8.0.0 - Tentative release November 22, 2022 Additional Information Determine the Apache version used by NetWorker through the following process: Linux: 1. Ensure JAVA_HOME environment variable is set: echo $JAVA_HOME 2. If nothing is returned, create the environment variable: export JAVA_HOME=/opt/nre/java/latest/ 3. Run: /opt/nsr/authc-server/tomcat/bin/version.sh [root@networker-mc ~]# /opt/nsr/authc-server/tomcat/bin/version.sh Using CATALINA_BASE: /opt/nsr/authc-server/tomcatUsing CATALINA_HOME: /opt/nsr/authc-server/tomcatUsing CATALINA_TMPDIR: /opt/nsr/authc-server/tomcat/tempUsing JRE_HOME: /opt/nre/java/latest/Using CLASSPATH: /opt/nsr/authc-server/tomcat/bin/bootstrap.jar:/opt/nsr/authc-server/tomcat/bin/tomcat-juli.jarUsing CATALINA_OPTS: Server version: Apache Tomcat/9.0.58Server built: Jan 15 2022 14:37:38 UTCServer number: 9.0.58.0OS Name: LinuxOS Version: 5.4.17-2136.308.9.el8uek.x86_64Architecture: amd64JVM Version: 1.8.0_333-b02JVM Vendor: Oracle Corporation Windows: 1. Ensure JAVA_HOME environment variable is set: echo %JAVA_HOME% 2. If nothing is returned, open the system properties, and create the environment variable to identify your JRE instance: 3. If the variable was newly created, you must open a new command prompt to pick up the variable, run: cd "C:\Program Files\EMC NetWorker\nsr\authc-server\tomcat\bin" 4. Run: version.bat C:\Program Files\EMC. Users of affected products are advised to update to the latest version. Affected Products . Apache Tomcat 9.0.0.M1 – . Apache Tomcat 11.0.0-M1 – 11.0.1. Apache Tomcat 10.1.0-M1 – 2025 to update to the applicable version and the latest version. Apache Tomcat . Apache Tomcat 11.0.2. Apache Tomcat . Download Apache Tomcat; To download Apache Tomcat, you will need to visit the Apache Tomcat website and download the latest version of the software. At the time of writing, the latest stable version of Apache Tomcat is . To download Apache Tomcat, visit the following URL:Use the latest Tomcat Version in the Eclipse IDE even if Apache Tomcat
Database [Q] Quit - Do not proceed. No changes Choose [A]: AORDS installation is pretty straight forward. If you didn’t change the ORDS_PUBLIC_USER password during the above, please keep in mind that changing the password later could force you to reconfigure ORDS. Once the installation is over, ORDS built-in jetty server automatically start. You can access the APEX interface now from Use ctrl+c to kill the server.Now we will install and configure Apache Tomcat for the webserver serving ORDS. Version 9 was the latest one supported for ORDS, hence we will proceed with the same version. Keep on checking Oracle’s announcements to know when the later versions are certified for ORDS. Download the tar.gz file from the download repository & extract to /u01/apache-tomcat/Now switch to /u01/apache-tomcat/conf path and let us quickly make few modifications. As my server is already running Oracle EBS on port number 8005, I had to change this to next available port so that Apache Tomcat could go online.Edit the “server.xml” file and make the changes as with the image below and make sure that you are not running other application on the port 8080. If yes, you will have to reconfigure ORDS once again with the next available port (I am not sure whether it would truly affect incase if you are not using Standalone mode)Now we have to copy few files to Apache [email protected]:/home/oracle/Downloads/ords-latest>cp ords.war /u01/apache-tomcat/[email protected]:/home/oracle/Downloads/apex-latest/apex>scp -pr images /u01/apache-tomcat/webapps/iIt’s time to start Apache Tomcat server! As user [email protected]:/u01/apache-tomcat/bin>export ORDS_CONFIG=/u01/ords/[email protected]:/u01/apache-tomcat/bin>export JAVA_OPTS="-Dconfig.url=${ORDS_CONFIG} -Xms1024M -Xmx1024M"[email protected]:/u01/apache-tomcat/bin>./startup.shUsing CATALINA_BASE: /u01/apache-tomcatUsing CATALINA_HOME: /u01/apache-tomcatUsing CATALINA_TMPDIR: /u01/apache-tomcat/tempUsing JRE_HOME: /usrUsing CLASSPATH: /u01/apache-tomcat/bin/bootstrap.jar:/u01/apache-tomcat/bin/tomcat-juli.jarUsing CATALINA_OPTS:Tomcat started.If there are no configuration issues, Apache Tomcat server should start serving now. Apache Tomcat is a popular open-source web server and servlet container that allows developers to run Java web applications. It is a crucial tool for anyone working on Java-based projects, as it provides a reliable environment for testing and deploying web applications.How to Install Apache Tomcat for Developers This is the part where we guide you through the process of downloading and installing Apache Tomcat on your system.Downloading Apache TomcatThe first step in installing Apache Tomcat is to download the latest version of the software from the official Apache Tomcat website. It is essential to choose the correct version based on your operating system and requirements. Apache Tomcat is available for Windows, macOS, and Linux, so make sure to select the appropriate version for your system.Once you have selected the correct version, click on the download link to initiate the download process. The file size of Apache Tomcat may vary depending on the version you choose, so ensure that you have sufficient disk space available on your system. Once the download is complete, you can proceed to the next step of the installation process.Installing Apache TomcatAfter downloading the Apache Tomcat software, locate the downloaded file on your system and extract the contents to a folder of your choice. The extracted folder will contain all the necessary files and directories needed to run Apache Tomcat. Next, open a terminal or command prompt window and navigate to the bin directory within the Apache Tomcat folder.Once you are in the bin directory, you can start Apache Tomcat by running the startup script. This script will launch the Apache Tomcat server and make it available for use. To verify that Apache Tomcat is running correctly, open a web browser and navigate to If you see the Apache Tomcat homepage, congratulations – you have successfully installed Apache Tomcat on your system!Features of Apache TomcatApache Tomcat provides developers with a range of features and benefits that make it an essential tool for Java-based projects. Some of the key features of Apache Tomcat include:Servlet and JSP Support: Apache Tomcat supports Java Servlets and JavaServer Pages (JSP), allowing developers to create dynamic web applications with ease.Security: Apache Tomcat provides robust security features, including SSL support and role-based access control, to ensure the safety of web applications.Scalability: Apache Tomcat is highly scalable, allowing developers to easily expand their web applications as needed without compromising performance.Logging and Monitoring: Apache TomcatApache Tomcat Home - Apache Tomcat - Apache Tomcat - Apache
Major difference between Tomcat 8 and 9, then, is the version of the Java servlet specification they support, as well as the minor additional features included in Tomcat 9.How long will Tomcat 9 be supported?Tomcat 9 was released in December 2018 and is listed on the Apache Tomcat project website to have Long Term Support (LTS) availability until May 2022. After that date, Tomcat will no longer receive security updates or bug fixes and the project will move to support the next major version.It is recommended to upgrade to the latest version prior to May 2022 in order to maintain optimal security and stability.Is Tomcat 8 still supported?Yes, Tomcat 8 is still supported. Apache Tomcat 8 was released in July 2014 as the successor to Tomcat 7 and has been heavily used by users around the world since its release. Despite being released almost five years ago, the Tomcat team still provides security and bug fixes for Tomcat 8, as well as the more recent Tomcat 9 release.The Apache Tomcat team are committed to providing a secure and reliable product, and they continue to invest in Tomcat 8. The Tomcat team are currently working on Tomcat 8.5, which is an update to Tomcat 8 that features bug fixes and security enhancements.As with Tomcat 8, Tomcat 8.5 will continue to receive bug and security fixes, so it’s a good choice if you need a reliable and secure web server.Which Tomcat version is suitable for Java 17?Apache Tomcat 9 is the latest version of Tomcat which is compatible with Java 17. Tomcat supports the Java Servlet 5.0, JavaServer Pages (JSP) 2.3 and Java Expression Language (EL) 3.0 specifications, as well as a number of additional enhancements.It also provides Java WebSocket 1.1 implementation, which allows for a more efficient and secure way to interact with web applications.It is recommended that those running Java 17 use the latest Tomcat 9 in order to leverage the new features and ensure compatibility. Prior versions such as Tomcat 8.0, 8.5 and 8.5. x have reached End of Life and are no longer supported or compatible with newer Java versions.Which version of spring is compatible with Tomcat 9?Spring 5 is compatible with Tomcat 9. Spring 5 was released in September 2017 and includes a number of features such as a new reactive web framework, improved testing support and improvements to running Spring on JDK 9.It also boasts support for some of the latest versions of popular web servers like Tomcat 9, Jetty 9.4. x and Undertow 2.0. It is also interoperable with Java EE 8 APIs, including the Servlet 4.0 spec, JSON Binding API (JSON-B) and JavaServer Faces (JSF) 2.3.All in all, Spring 5 is the best choice for running Spring applications on Tomcat 9.Is Tomcat deprecated?No, Tomcat (or Apache Tomcat) is not deprecated. Tomcat is an open source web server and web container developed by the Apache Software Foundation, and it is part of the Apache Open Source community.It is one of the most widely used webLatest Apache tomcat version for Archive center 23.3
In order to check the Tomcat version on a Linux system, the following steps can be taken: 1. Open the terminal window. 2. Change to the Tomcat directory. Depending on your system, this can either be /usr/share/tomcat or /opt/tomcat.3. Run the command ‘bin/catalina.sh version’ to display the Tomcat version. 4. Run the command ‘bin/catalina.sh -v’ to display additional information about the version, such as the build date and time.It is also possible to check the version number from the Tomcat admin page. To do so, start the Tomcat server with the ‘bin/catalina. sh start’ command, and then navigate to on any browser.The page will display the Tomcat version information.What is the latest Tomcat version?The latest version of Tomcat is version 9.0.37, released on September 30th, 2020. This version comes with numerous bug fixes and other improvements. Some of the highlights of this version include: • Improved startup performance and reduced memory usage• Improved compatibility with Java EE 8 and Jakarta EE 8• Apache Tomcat security hardening• Simplified tag library development with the Unified EL• Improved support for WebSocket• Support for Java Servlet 4.0• Improved TLS/SSL protected communication• Improved HTTP/2 support• Improvements to Comet support• Improved support for the Java Management Extensions (JMX)Tomcat 9.0.37 is available for download from the Apache website, and is the recommended version for all users looking to get the most out of their Tomcat installation.Is Apache and Tomcat the same?No, Apache and Tomcat are not the same. Apache is an open-source web server that is used to serve web content over the internet, while Tomcat is an open-source Java servlet container and web server. Apache is used for static content, such as HTML pages and images, while Tomcat is used for dynamic content, such as Java and JSP pages.Apache is generally installed and used in combination with Tomcat, as Tomcat can be used to handle the dynamic content while Apache serves the static content. Together, they provide a complete web server solution.Is Tomcat a HTTP server?No, Tomcat is not a HTTP server. It is an application server or servlet container. It is designed to run JavaServlet and JavaServer Pages (JSP) based applications. Apache Tomcat is developed and maintained by an open source community and built on open-source technologies.The server handles HTTP requests by employing a own Java based web server called Coyote. It interprets servlets and JSPs, generates replies to HTTP requests, parses HTML templates and serves static resources.Is Tomcat a web or application server?Yes, Tomcat is both a web and application server. It is most commonly associated with the Java servlet container that enables the deployment and running of Java applications. Tomcat is a web server that also provides a Java Servlet container and acts as a web container, which allows web applications written in Java to run within the server.It supports various web technologies such as JSPs (JavaServer Pages), Java Servlets, HTML, and CSS. Therefore, it can be used to deploy web applications written in Java, HTML, CSS, and JS. Additionally, Tomcat can be. Users of affected products are advised to update to the latest version. Affected Products . Apache Tomcat 9.0.0.M1 – . Apache Tomcat 11.0.0-M1 – 11.0.1. Apache Tomcat 10.1.0-M1 – 2025 to update to the applicable version and the latest version. Apache Tomcat . Apache Tomcat 11.0.2. Apache Tomcat . Download Apache Tomcat; To download Apache Tomcat, you will need to visit the Apache Tomcat website and download the latest version of the software. At the time of writing, the latest stable version of Apache Tomcat is . To download Apache Tomcat, visit the following URL:Apache Tomcat Version 1.4 !-
Latest Version Apache Tomcat 11.0.5 Operating System Windows 7 / Windows 8 / Windows 10 / Windows 11 User Rating Click to vote Author / Product Apache Software Foundation / External Link Filename apache-tomcat-9.0.100.exe Sometimes latest versions of the software can cause issues when installed on older devices or devices running an older version of the operating system.Software makers usually fix these issues but it can take them some time. What you can do in the meantime is to download and install an older version of Apache Tomcat 9.0.100. For those interested in downloading the most recent release of Apache Tomcat or reading our review, simply click here. All old versions distributed on our website are completely virus-free and available for download at no cost. We would love to hear from youIf you have any questions or ideas that you want to share with us - head over to our Contact page and let us know. We value your feedback!Comments
Home » Articles » Linux » HereApache Tomcat 9 is not available from the standard RHEL distributions, so this article provides information about the manual installation and basic configuration of Apache Tomcat 9 on RHEL and its clones from tarballs. The tarball approach to installation is largely unchanged compared to previous tomcat versions. Downloads Installation Checking the Status of Tomcat Configuration Files Enabling HTML Management Access Deploying Applications Java and Tomcat UpgradesRelated articles. Apache Tomcat 7 Installation on Linux (RHEL and clones) Apache Tomcat 8 Installation on Linux (RHEL and clones) Apache Tomcat : Enable HTTPSDownloadsDownload the following software. This article assumes these downloads are present in the "/tmp" directory on the server. OpenJDK 11 Downloads (I used OpenJDK11U-jdk_x64_linux_hotspot_11.0.10_9.tar.gz) Apache Tomcat (I used apache-tomcat-9.0.45.tar.gz)InstallationCreate a user called "tomcat" to own the Tomcat installation. We also create a directory called "/u01" to hold all the config, and make sure that it owned by the new "tomcat" user.# useradd tomcat# mkdir -p /u01# chown tomcat:tomcat /u01Install the JDK from the tarball under the "/u01/java" directory. We unzip it to create a new directory, which includes the version number, but use a symbolic link so we can always use the same path for the JAVA_HOME environment variable, regardless of the version.# su - tomcat$ mkdir -p /u01/java$ cd /u01/java$ tar xzf OpenJDK11U-jdk_x64_linux_hotspot_11.0.10_9.tar.gz$ ln -s jdk-11.0.10+9 latestInstall Tomcat from the tarball under the "/u01/tomcat" directory. We unzip it to create a new directory, which includes the version number, but use a symbolic link so we can always use the same path for the CATALINA_HOME environment variable, regardless of the version.$ mkdir -p /u01/tomcat$ cd /u01/tomcat$ tar xzf /tmp/apache-tomcat-9.0.45.tar.gz$ ln -s apache-tomcat-9.0.45 latestWe want to separate the config from the binaries, to make future upgrades easier, so we will create a new directory to act as the CATALINA_BASE location, and seed it by copying the relevant directories to the new directory. We are using a sub-directory called "instance1" to allow for multiple instances, but that is not necessary if you only plan to have a single Tomcat instance running.$ mkdir -p /u01/config/instance1$ cp -r /u01/tomcat/latest/conf /u01/config/instance1/$ cp -r /u01/tomcat/latest/logs /u01/config/instance1/$ cp -r /u01/tomcat/latest/temp /u01/config/instance1/$ cp -r /u01/tomcat/latest/webapps /u01/config/instance1/$ cp -r /u01/tomcat/latest/work /u01/config/instance1/Set the following environment variables and append them to the "/home/tomcat/.bash_profile" so they are set for subsequent logins.export JAVA_HOME=/u01/java/latestexport CATALINA_HOME=/u01/tomcat/latestexport CATALINA_BASE=/u01/config/instance1Start and stop Tomcat using the following scripts.$ $CATALINA_HOME/bin/startup.sh$ $CATALINA_HOME/bin/shutdown.shThe Tomcat logs are written
2025-04-16Select the topic Apache Tomcat is a mandatory component required to run the ESET PROTECT Web Console.Before upgrading1.Execute the following command to see the installed version of Apache Tomcat (in some cases, the folder name is tomcat7 or tomcat8):cd /usr/share/tomcat/bin && ./version.sh2.If a later version is available:a.Ensure that the later version is supported.b.Back up the server.xml Tomcat configuration file. (File location may vary based on the Linux distribution, for example /etc/tomcat9/server.xml).Upgrade procedure1.Run the following command to stop the Apache Tomcat service (in some cases, the service name is tomcat9):sudo systemctl stop tomcat2.Upgrade Apache Tomcat and Java.Packages may have different names and may not be available in the default repository•Example package names below may differ from your Linux distribution repository packages.•The default repository of your Linux distribution may not contain the latest supported version of Apache Tomcat and Java.•For installation and configuration of Apache Tomcat, see the Apache Tomcat documentation.Linux distributionTerminal commandsDebian and Ubuntu distributionssudo apt-get updatesudo apt-get install openjdk-17-jdk tomcat9CentOS and Red Hat distributionsyum updateyum install java-17-openjdk tomcatSUSE Linuxzypper refreshsudo zypper install java-17-openjdk tomcat93.Replace the server.xml file with the server.xml file from your backup.4.Ensure the HTTPS connection for Apache Tomcat is configured correctly.See the additional Web Console configuration for enterprise solutions or low-performance systems.If you have upgraded Java, ensure to configure Apache Tomcat to use the latest Java package installed on your system.After upgrading Apache Tomcat to a later major version (for example, 8.x to 9.x):1.Deploy ESET PROTECT Web Console again (see ESET PROTECT Web Console installation - Linux)2.Reuse %TOMCAT_HOME%/webapps/era/WEB-INF/classes/sk/eset/era/g2webconsole/server/modules/config/EraWebServerConfig.properties
2025-04-05Security Article Type Security KB CVE Identifier CVE-2022-34305 Issue Summary See the 'Details' section below for details on each incorrectly identified CVE. Details In Apache Tomcat 10.1.0-M1 to 10.1.0-M16, 10.0.0-M1 to 10.0.22, 9.0.30 to 9.0.64, and 8.5.50 to 8.5.81, the Form authentication example in the examples web application displayed user provided data without filtering, exposing an XSS vulnerability.NetWorker version 19.6.1.1 build 94 has Apache Tomcat 9.0.52.The latest NetWorker version 19.7.0.1 build 54 has Apache Tomcat 9.0.58. Recommendations Dell NetWorker engineering investigated this issue. Remediation is planned for a future release when Apache Tomcat 9.0.65 is implemented. Releases are expected to include Apache Tomcat 9.0.65. 19.7.0.2 - Tentative release October 22, 2022 19.8.0.0 - Tentative release November 22, 2022 Additional Information Determine the Apache version used by NetWorker through the following process: Linux: 1. Ensure JAVA_HOME environment variable is set: echo $JAVA_HOME 2. If nothing is returned, create the environment variable: export JAVA_HOME=/opt/nre/java/latest/ 3. Run: /opt/nsr/authc-server/tomcat/bin/version.sh [root@networker-mc ~]# /opt/nsr/authc-server/tomcat/bin/version.sh Using CATALINA_BASE: /opt/nsr/authc-server/tomcatUsing CATALINA_HOME: /opt/nsr/authc-server/tomcatUsing CATALINA_TMPDIR: /opt/nsr/authc-server/tomcat/tempUsing JRE_HOME: /opt/nre/java/latest/Using CLASSPATH: /opt/nsr/authc-server/tomcat/bin/bootstrap.jar:/opt/nsr/authc-server/tomcat/bin/tomcat-juli.jarUsing CATALINA_OPTS: Server version: Apache Tomcat/9.0.58Server built: Jan 15 2022 14:37:38 UTCServer number: 9.0.58.0OS Name: LinuxOS Version: 5.4.17-2136.308.9.el8uek.x86_64Architecture: amd64JVM Version: 1.8.0_333-b02JVM Vendor: Oracle Corporation Windows: 1. Ensure JAVA_HOME environment variable is set: echo %JAVA_HOME% 2. If nothing is returned, open the system properties, and create the environment variable to identify your JRE instance: 3. If the variable was newly created, you must open a new command prompt to pick up the variable, run: cd "C:\Program Files\EMC NetWorker\nsr\authc-server\tomcat\bin" 4. Run: version.bat C:\Program Files\EMC
2025-03-25