Visakha Sandhya Griddalurusandhyagriddaluru.hashnode.dev·Nov 28, 2023How to setup a Tomcat Server on AWS EC2 InstanceWhat is Tomcat? The Apache Software Foundation created the open-source application server called Apache Tomcat or just Tomcat. Tomcat is a widely used, open-source servlet container that provides a reliable and scalable environment for deploying Java...DiscussTomcat
Saswat Samalsaswatblogs.hashnode.dev·Oct 23, 2023DevOps 3.3: App SetupTOMCAT SETUP: Login to the Tomcat VM: Login to the Tomcat vm vagrant ssh app01 Verify Hosts entry, if entries missing update them with IP and hostnames using cat /etc/hosts . Update the OS to the latest patches using yum update -y . Set Reposit...Discuss·5 likes🚀 DEVOPS 3.0: Building Your Project 🏗️Devops
Samikshya Sapkotasamikshyasapkota.hashnode.dev·Oct 16, 2023How to Install Jenkins on Tomcat ServerStep1: Install Java Tomcat requires Java to be installed on the server so that any Java web application code can be executed. We can satisfy that requirement by installing OpenJDK with apt-get. sudo apt-get update Install the Java Development Kit pa...DiscussJenkins
Srikanth Mergusrikanthmergu.hashnode.dev·Oct 6, 2023Unlocking the Power of Apache Tomcat: Your Ultimate GuideIntroduction In web development and hosting, Apache Tomcat stands as dependable, providing a robust and reliable environment for deploying Java-based web applications. Whether you are a seasoned developer or just starting your journey into the realm ...DiscussTomcat
Mohd Shahidmantratech.hashnode.dev·Sep 26, 2023Setting Up a CI/CD Pipeline with Jenkins, Maven, and Tomcat on AWS EC2 Instances running UbuntuIn the fast-paced world of software development, having a reliable and efficient Continuous Integration and Continuous Deployment (CI/CD) pipeline is essential. A well-structured CI/CD pipeline can streamline the development process, improve code qua...DiscussJenkins ProjectTomcat
Mohd Shahidmantratech.hashnode.dev·Sep 22, 2023A Step-by-Step Guide to Installing Apache Tomcat on UbuntuIf you're looking to set up Apache Tomcat on your Ubuntu system, you've come to the right place. Apache Tomcat is a popular open-source application server used for deploying Java web applications. In this article, we will walk you through the install...Discuss·10 likes·60 readsTomcat
Tara Prasad Sarangitaraps.hashnode.dev·Sep 19, 2023Setup Tomcat server on LinuxLogin to Azure portal Create a VM, After creating VM, add an inbound rule in VM's network port 8080. JDK & Tomcat server deployement, sudo apt-get update -y sudo apt install openjdk-11-jre -y #JDK installation cd /opt sudo wget https...Discuss·1 like·49 readsDevops
Edvin Dsouzaedvindsouza.com·Aug 7, 2023Automating Web Application Deployment with Jenkins: A Step-by-Step GuideIntroduction: Jenkins is a powerful open-source automation server that enables developers to automate the build, test, and deployment process for software projects. In this blog post, we will guide you through the step-by-step process of setting up a...Discuss·67 readsJenkins
Aasifa Shaikmysoftwarediary.hashnode.dev·Jul 18, 2023Deployment of the JSP app in Tomcat using Jenkins and MavenLets deploy one Java based web app called registration app using Tomcat application server. Tomcat server is ideal choice for hosting Java web applications. Follow below steps to the deploying this app. 🪄Launching Jenkins on EC2 Instance: The first ...Discuss·1 like·244 readsDevops
Maaz Mohdmaazmohd313.hashnode.dev·Jun 21, 2023Tomcat installation on EC2 instanceEC2 instance with Java 11 The first thing we need to do is to set up java on the ec2-instance using the command below. sudo yum update sudo amazon-linux-extras install java-openjdk11 -y Install Apache Tomcat Download tomcat packages from https://tom...Discuss·1 likeapache