Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themerdark
$ mkdir -p /opt/shrine/tomcat
 
$ cd ~
$ wget https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.28/srcbin/apache-tomcat-8.5.28-src.tar.gz
$ tar xvf apache-tomcat-8.5.28.tar.gz -C /opt/shrine/tomcat --strip-components=1
 
$ cd /opt/shrine/tomcat

-- Setting correct permissions for the Tomcat folders
$ chgrp -R shrine /opt/shrine/tomcat
$ chmod -R g+r conf
$ chmod g+x conf
$ chown -R shrine webapps/ work/ temp/ logs/

...