Apache Tomcat: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with "<source lang="bash"> apt update; apt list --upgradable mkdir /opt/tomcat; cd /opt/tomcat/ wget https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.63/bin/apache-tomcat-8.5.63...")
 
No edit summary
Line 7: Line 7:


==References==
==References==
* [https://superuser.com/questions/518347/ Equivalent to tar's <code>--strip-components=1</code> in unzip]
* [https://stackoverflow.com/questions/41243174/ Untar tar file using <code>--strip-components=1</code>]
* [https://www.digitalocean.com/community/tutorials/install-tomcat-9-ubuntu-1804 Install Apache Tomcat 9 on Ubuntu 18.04]
* [https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-8-on-ubuntu-16-04 Install Apache Tomcat 8 on Ubuntu 16.04]
* [https://www.digitalocean.com/community/tutorials/how-to-install-apache-tomcat-8-on-ubuntu-16-04 Install Apache Tomcat 8 on Ubuntu 16.04]
* [https://www.digitalocean.com/community/tutorials/install-tomcat-9-ubuntu-1804 Install Apache Tomcat 9 on Ubuntu 18.04]
* [https://archive.apache.org/dist/tomcat/ Archive Apache Tomcat]
* [https://stackoverflow.com/questions/41243174/ Untar tar file using <code>--strip-components=1</code>]
* [https://superuser.com/questions/518347/ Equivalent to tar's <code>--strip-components=1</code> in unzip]

Revision as of 08:53, 27 February 2021

apt update; apt list --upgradable
mkdir /opt/tomcat; cd /opt/tomcat/
wget https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.63/bin/apache-tomcat-8.5.63.tar.gz
tar -xzvf apache-tomcat-8*tar.gz -C /opt/tomcat --strip-components=1

References