Linux serverNETWORK ADMINISTRATIONS

How to install and Configure Apache Tomcat in Linux (RHEL/CentOS) | Apache Tomcat Easy Tutorial

Assalam O Alikum! In this video you are going to learn about How to install and Configure Apache Tomcat in Linux (RHEL/CentOS) | Apache Tomcat Easy Tutorial | Apache Tomcat Installation

Commands:

yum install java-1.8.0-openjdk
systemctl enable tomcat8.service
systemctl start tomcat8
systemctl status tomcat8
systemctl stop tomcat8
systemctl restart tomcat8

Systemd File:

# Systemd unit file for tomcat
[Unit]
Description=Apache Tomcat Web Application Container
After=syslog.target network.target

[Service]
Type=forking

Environment=JAVA_HOME=/usr/lib/jvm/jre
Environment=CATALINA_PID=/usr/local/tomcat8/temp/tomcat.pid
Environment=CATALINA_HOME=/usr/local/tomcat8
Environment=CATALINA_BASE=/usr/local/tomcat8
Environment=’CATALINA_OPTS=-Xms512M -Xmx1024M -server -XX:+UseParallelGC’
Environment=’JAVA_OPTS=-Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom’

ExecStart=/usr/local/tomcat8/bin/startup.sh
ExecStop=/bin/kill -15 $MAINPID

User=tomcat8
Group=tomcat8
UMask=0007
RestartSec=10
Restart=always

[Install]
WantedBy=multi-user.target

_____________________________/SOCIAL LINKS___________________________________
Instagram ➤https://www.instagram.com/arahman_990/
Facebook ➤https://www.facebook.com/arITexperts
___________________________________________________________________________

Apache Tomcat,Configuration in Linux,Apache,Tomcat,RHEL,CentOS,UNIX,Web Server,Java Se,Java Applications,Servlet/JSP,JSP
apache tomcat installation,configre port of tomcat,tomcat installation,apache tomcat on Linux,apache tomcat: installtion in linux,download apache tomcat,how to install apache tomcat in ubuntu,how to install apache tomcat in linux,how to install apache tomcat

how to install apache tomcat in linux
apache tomcat installation in centos
java
linux
jdk 1.8
apache tomcat 6
tomcat
tomcat tutorial for beginners
tomcat installation
uninstall openjdk
centos 7
apache
jsp and servlet container
j2ee container
apache tomcat 8.5.16
Oracle JDK

source

centos 8

One thought on “How to install and Configure Apache Tomcat in Linux (RHEL/CentOS) | Apache Tomcat Easy Tutorial

Comments are closed.