Skip to main content

Tomcat installation on Linux


Tomcat Installation on Linux:
Step 1: install JDK (Down load the JDK and Extract in the server location)
Step 2: Add JAVA_HOME to your .bash_profile, Add below two entries .
export JAVA_HOME=/opt/jdk1.8.0_141
PATH=$PATH:$JAVA_HOME

·       Once you add to bash profile , when you run any java file it automatically picks JAVA_HOME and run .
·       Otherwise you can manually also can set the JAVA_HOME by export command

export JAVA_HOME=/opt/jdk1.8.0_141
PATH=$PATH:$JAVA_HOME
Stpe 3: Now Download the Tomcat file and extract it.
·       I am downloading from the wget command
·       tar -zxf apache-tomcat-9.0.1.tar
·       cd apache-tomcat-9.0.1
Step 4: Tomcat has been successfully installed
Step 5: Go to the bin folder and start the server by executing the script – startup.sh
Step 6: Launch the url : http://hint102.com:8080



Comments

Popular posts from this blog

Jfrog Artifactory Installation single node with Docker

Before you proceed with the installation, review the system requirements. Artifactory System Requirements Artifactory system requirements depend mainly upon the expected amount of active clients. Number of Active Clients Processor Memory Disk Space 0-20 4 core CPU 4 GB Based on the expected artifact storage volume. Fast disk with free space that is at least 3 times the total size of stored artifacts. 0-100 4 core CPU 8GB Based on the expected artifact storage volume. Fast disk with free space that is at least 3 times the total size of stored artifacts. 100-200 8 core CPU 12 GB Based on the expected artifact storage volume. Fast disk with free space that is at least 3 times the total size of stored artifacts. Backup SAN is recommended. 200+ Contact  JFrog Support Contact  JFrog Support Based on the expected artifact storage volume. Fast disk with free space that is at least 3 times the total size of stored artifacts. Contact  JFrog Support Launch 1 Ec2-Instance  RAM -...

DevOps Course Structure

DevOps Module 1: What is DevOps? Definition of DevOps Overview of DevOps philosophy Key principles and practices History and Evolution of DevOps Origins of DevOps Evolution from Agile and Lean methodologies Module 2: Why DevOps? Benefits of DevOps Faster delivery and time-to-market Improved collaboration between teams Enhanced quality and reliability of software Increased efficiency and productivity Business Impact Case studies demonstrating the value of DevOps Metrics for measuring success in DevOps Module 3: DevOps Tools Overview of Tool Categories Version Control Systems (e.g., Git) Continuous Integration and Continuous Deployment (CI/CD) tools (e.g., Jenkins, GitLab CI) Configuration Management (e.g., Ansible, Chef, Puppet) Containerization (e.g., Docker, Kubernetes) Monitoring and Logging (e.g., Prometheus, ELK Stack) Tool Demonstrations Practical examples of using selected tools Module 4: Differences Between Traditional Methodologies and DevOps Approach Traditional Software Devel...

Tomcat Installation and Folder structure

Tomcat Installation: 1.        Basically all operating systems are understand only binary language , As we discussed earlier post that Tomcat have J2ee , servlet   container. 2.        This is Java based Web Application server . 3.        For this reason we need to install JDK before running Tomcat file 4.        Download the support JDK based on Tomcat version. Download JDK: Find the JDK for Linux 64bit here   j dk-8u161-linux-x64.tar.gz                              Find the JDK for Windows 64bit here jdk-8u161-windows-x64.exe Download Tomcat: Find the Tomcat here   and download the required version. If you can able to ping Google from your Linux , You can download with wget command. Step 1: ...