I have created an instance in Amazon web services, and I have connected to the server using putty through ssh.
But I do not know how to install tomcat 8 in amazon ec2. Please help me with this.
On Amazon Linux 2 AMI:
List extra packages (you will see tomcat8 versions):
$ amazon-linux-extras list
Install extra packages:
$ sudo amazon-linux-extras install tomcat8.5
Start tomcat service:
$ sudo systemctl start tomcat
Create index file:
$ cd /usr/share/tomcat/webapps
$ sudo mkdir ROOT
$ cd ROOT/
$ sudo vi index.html #add some HTML content
Next you could view your site at localhost:8080
For Amazon AMI 2, Tomcat is available in Amazon Linux Extra topic "tomcat8.5"
To use, run
# sudo amazon-linux-extras install tomcat8.5
Learn more at https://aws.amazon.com/amazon-linux-2/faqs/#Amazon_Linux_Extras
The below Link works well for EC2 / Linux or Mac
sudo yum install tomcat8-webapps tomcat8-docs-webapp tomcat8-admin-webapps
This will install:
Note: When a Manager App is installed - be sure to change the default roles and permissions etc and Password too. Otherwise you are very vulnerable. Its best to disable the admin module for better security.
STEPS:
yum install java -y
sudo wget <tar.gz path>
tar -vxzf Apache-tomcat-xxxx.tar.gz
./shutdown.sh
and ./startup.sh
below mentioned follow the step but http://locathost:8080/manager/html is Not open on amazon Linux error is showing in the as below menitoned
(HTTP Status 404 – Not Found Type Status Report
Message The requested resource [/manager/html] is not available
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Apache Tomcat/9.0.41)
amazon-linux-extras
amazon-linux-extras install tomcat9
yum update
systemctl start tomcat
systemctl status tomcat
netstat -tunple
cd /usr/share/tomcat/webapps
mkdir ROOT
cd ROOT/
vi index.html