We provide following cPanel Hosting Plan @ Rs.100/- Per Month. Disk Space – 10 GB Control Panel – cPanel 1 GB Business Email ID – Free Cost – Rs.1200/- Per Year Use Promo Code – WSS1G6S6XC To Get Instant Discount Read More …
Category: Linux
Howto Install MariaDB 10.3 on CentOS 7 ?
Below are the steps. 1. Create repo file for MariaDB 10.3 as below. # nano /etc/yum.repos.d/mariadb.repo [mariadb] name=MariaDB baseurl=http://yum.mariadb.org/10.3/centos7-amd64 enabled=1 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 Save this file and run # yum update -y 2. Install MariaDB 10.3 as below. # yum install Read More …
Howto Install Apache TomCat 9 On CentOS 7?
Follow the steps below. 1. Download Apache TomCat 9 – # wget -c https://downloads.apache.org/tomcat/tomcat-9/v9.0.50/bin/apache-tomcat-9.0.50.tar.gz 2. Extract File – # tar -xvzf apache-tomcat-9.0.50.tar.gz 3. Move Tomcat to /usr/local Folder # mv apache-tomcat-9.0.50 /usr/local 4. Start TomCat – # /usr/local/apache-tomcat-9.0.50/bin/startup.sh 5. Check Read More …
Howto Install Open JDK 1.8 on CentOS 7 ?
Just follow the steps below. # yum update -y # yum install java-1.8.0-openjdk -y Set Class Path as below. # echo “JAVA_HOME=/usr/bin” >> /root/.bash_profile # echo “export JAVA_HOME” >> /root/.bash_profile # JAVA_HOME=/usr/bin # export JAVA_HOME Done !