DevOps tutorial : Install Tomcat Server 9 and Deploy war file into Staging server

preview_player
Показать описание
Hello Friends ,

Welcome to DevOps training ,

In this session we will learn how to install tomcat 9 on Ubuntu Server and deploy a war file into staging server.

Below is the steps to install the tomcat 9 on ubuntu server.

sudo apt-get update
sudo apt-get install openjdk-8-jdk
sudo apt install unzip wget
cd /tmp
unzip apache-tomcat-*.zip
sudo mkdir -p /opt/tomcat
sudo mv apache-tomcat-9.0.33 /opt/tomcat/
cd /opt/tomcat/apache-tomcat-9.0.33/conf/ ---- Change the port because Jenkins running on 8080
cd /opt/tomcat/apache-tomcat-9.0.33//bin/
sudo chmod +x *
Provide ID and Password for tomcat
cd /opt/tomcat/apache-tomcat-9.0.33/conf

403 Access Denied on Tomcat 8 Manager App without prompting for user/password
cd /opt/tomcat/apache-tomcat-9.0.33/webapps/manager/META-INF
Рекомендации по теме
Комментарии
Автор

hey good one ! But u know when im doing Jenkins checking my global config ... im getting this There's no such executable git.exe in PATH: /sbin, /usr/sbin, /bin, /usr/bin.

phoneaung