It is very simple process using iptables firewall. Below is a single step. # iptables -t nat -A PREROUTING -p tcp –dport 443 -j REDIRECT –to-port 8443 All request coming on port 443 are forwarded to Port 8443 of Tomcat. Read More …
Month: September 2021
SSL Certificate Installation On Tomcat For CentOS7
Below are the steps. Here we are using Let’s Encrypt SSL Certificate to secure the Tomcat Server. For this example, I am using demo.ssharad.com as domain name for Tomcat. Before I move ahead, please make sure that your server must Read More …
Installing Apache Tomcat On CentOS 7
Below are the steps. 1. Install OpenJDK for java as below. # yum install java-1.8.0-openjdk -y 2. Check Java # which java # java -version openjdk version “11.0.12” 2021-07-20 LTS OpenJDK Runtime Environment 18.9 (build 11.0.12+7-LTS) OpenJDK 64-Bit Server VM Read More …
Xen Server – Set Up an Additional Hard Drive
Below are steps 1. Using SSH Login to your server. You can use putty software to login to server from Windows Machine. 2. For example : Consider you wish to add /dev/sdb drive which is newly attached to system. If Read More …