I'd like to install the latest (7.0.53) Tomcat on an AWS EC2 instance running Amazon Linux. If I were to do "sudo yum install tomcat7 -y", I would only get version 7.0.47, as shown by " yum list tomcat7". I could manually download the tar file and manually install, but since I want to automate this problem on a number of servers, that is not really suitable.
If I wanted the latest MySQL instead of what AWS has in its repository, I can do this (second line just to verify the repo is added):
sudo yum localinstall http://repo.mysql.com/mysql-community-release-el6.rpm -y
sudo yum repolist enabled | grep mysql
sudo yum install mysql-server -y
I am guessing that there might be a similar repo that might allow me to do similar for Tomcat7, but I have not been able to find a URL for one. Does such a thing exist?
Is there some other method of installing a more recent Tomcat7 on AWS using yum?