Apache Tomcat 8.5.23 Installation on CentOS

Apache Tomcat 8.5.23 Installation on CentOS

Tomcat:-          Tomcat is an open source Java Servlet implementation developed by the Apache Software Foundation. Beside Java Servlets, Tomcat implements several Java server technologies including JavaServer Pages (JSP), Java Expression Language, and Java WebSocket. Tomcat provides an HTTP Web Server for Java applications with support for HTTP/2, OpenSSL for JSSE and TLS virtual hosting….

Steps to install and configuration phpMyAdmin on CentOS 6

Steps to install and configuration phpMyAdmin on CentOS 6

Step1:Add the EPEL Repository rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm Step2:Install phpMyAdmin yum -y install phpmyadmin Step3:Find Your IP Address Following Sites: What is My IP Address? What Is My IP? Step4:Basic Configuration for phpMyadmin vi /etc/httpd/conf.d/phpMyAdmin.conf Find the following sections and change each ip address to the one you found in step3. Require ip 127.0.0.1 Allow from…

Steps to install bind dns server on VPS

Steps to install bind dns server on VPS

DNS Server:- A DNS Server is a computer server that contains a database of public ip address and their hostnames. Install bind dns server on centos6 Step1:- Checking updates with “yum update -y” Step2:- Install bind with “ yum install bind bind-utils -y” Step3:- Will open named.conf with “nano /etc/named.conf” Replacing *.*.*.* with corresponding ip…

Steps to install latest version of mysql and php

Steps to install latest version of mysql and php

Install MYSQL5.7 follow below steps :- To install Php Go to –>Php Installation First Check the version of OS cat /etc/redhat-release CentOS release 6.9(Final) Steps:-Download and add the following MySQL Yum repository 1)On RHEL/CentOS 6 wget http://dev.mysql.com/get/mysql157-community-release-e16-7.noarch.rpm 2)Install Packages yum localinstall mysql57-community-release-e16-7.noarch.rpm 3)Verify Mysql yum enabled yum repolist enabled | grep “mysql.*-community.*” 4)Installing latest mysql…