Page tree

Versions Compared

Key

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

...

Package VersionCommentsNext Step Version
v0.1Basic Tomcat with Java embedded per this article minus rotation of catalina.outFix log rotation after determining best route. Kevin looking into this.
v0.2......

 

Install by unzipping as serveradmin,

Code Block
languagebash
wget www.tin-pham.com/downloads/0fs-tomcat-linux/0fs-tomcat.tar.gz # this symbolically points to the latest 64-bit version
tar -xvpf 0fs-tomcat.tar.gz

Then as a sudo user,

Code Block
languagebash
sudo mv /home/serveradmin/0fs-tomcat/ /opt/tomcat.1/

To create your own modified 0fs package,

Code Block
languagebash
sudo tar -czvf 0fs-tomcat.tar.gz ./0fs-tomcat/

Tomcat and serveradmin

The purpose of the serveradmin account is to run Tomcat and java. As such serveradmin can not sudo into root. In the event that Tomcat is somehow attacked serveradmin would be compromised. Not allowing serveradmin access to sudo provides an extra layer of security.

...