Thursday, 24 December 2015

How to Install Pydio on Centos 6.X

Pydio on Centos 6.X Pydio is an Open source, secure and powerful online file sharing and synchronization software solution that can be an alternative to many online cloud storage systems. It can be accessed from the web, desktop or mobile platforms and hosting is private...

Monday, 7 December 2015

How to Setup Chat Support On Website With Mibew Messenger on Centos/RHEL 6.X

Setup Chat Support On Your Website With Mibew Messenger Mibew Messenger, also known as Open Web Messenger, is an open-source live/chat support application written in PHP and MySQL. It enables one-on-one chat assistance in real-time directly from your website. Just place...

Saturday, 5 December 2015

Shell Script For Take Backup of Mysql Databases

Shell Script For Take Backup of Mysql Databases Step 1: Create Directory For Backups Scripts & Backups # mkdir -p /backups/db_backup /backups/scripts Step 2: Create Backups Scripts # vi /backups/scripts/db_backups.sh #!/bin/bash export path1=/backups/db_backup...

Shell Script For Take Backup of Web Files on Centos/RHEL

Shell Script For Take Backup of Web Files on Centos/RHEL Step 1: Create Directory For Backup Scripts and Backups # mkdir -p /backups/web_backup /backups/scripts Step 2: Create Backups Backup Script # vi /backups/scripts/web_backups.sh #!/bin/bash export path1=/backups/web_backup...

How to Install utorrent on Centos/RHEL 6.X

Install utorrent on Centos/RHEL 6 Step 1: Install needed packages # yum install -y wget glibc openssl* libgcc unzip Step 2: Create sym link for libssl because the CentOS 6 has newer version of uTorrent required For x86_64 # ln -s /usr/lib64/libcrypto.so.0.9.8e /usr/lib64/libcrypto.so.0.9.8 #...

Thursday, 3 December 2015

How to Install Lamp on Centos 7

Install Lamp on Centos 7 1. Install Apache: # yum -y install httpd httpd-devel 2. Edit httpd.conf file: # vi /etc/httpd/conf/httpd.conf add this last line- RewriteEngine on CheckCaseOnly On ----Save & Quit (:wq)---- 3. make logs directory: # mkdir /logs 4. Go...

How to Install Web VMStat on centOS 6

Web VMStat Install on centos 6 Web-Vmstat it’s a small application written in Java and HTML which displays live Linux system statistics, such as Memory, CPU, I/O, Processes, etc. taken over vmstat monitoring command line in a pretty Web page with charts (SmoothieCharts)...

Wednesday, 2 December 2015

How to Install OsCommerce on Centos/RHEL

INSTALL OsCommerce on Centos Step 1: At First Configure LAMP, Disable selinux Step 2: INSTALL osCommerce: # cd /opt # wget http://www.oscommerce.com/files/oscommerce-2.3.4.zip # unzip oscommerce-2.3.4.zip # mv oscommerce-2.3.4 /var/www/html/ # mv /var/www/html/oscommerce-2.3.4/...

Tuesday, 1 December 2015

How to Install & Configure Redmine on RHEL/Centos 6x

Install & Configure Redmine on RHEL/Centos 6x What is Redmine ? Redmine is a flexible project management web application. Written using the Ruby on Rails framework, it is cross-platform and cross-database. Features : 1. Multiple projects support 2. Flexible role...

How to Install Cpanel & WHM On CentOS/RHEL 6.X

Installing CPanel & WHM optimized for CentOS/RHEL 6.X Link: http://www.tecmint.com/install-cpanel-whm-in-rhel-centos Need to install and configure yum, epel.repo and remi.repo # vi cat /etc/selinux/config SELINUX=disabled # service iptables stop Set the hostname...

How to Install Haproxy With Http and Https on Centos 6.X

Install Haproxy With Http and Https both What is haproxy? Configure Servers that HTTP connection to HAProxy Server is forwarded to backend Web Servers. Here is the setup like this=== 1. server3.kminfo.com [192.168.100.158] - Haproxy Load Balancer Server 2. server2.kminfo.com...

How to Install Java 7 (JDK 7u65) on CentOS/RHEL 6/5

Install Java 7 (JDK 7u65) on CentOS/RHEL 6/5 Step 1: Download Archive File Download latest version of java from http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html. For 64 Bit – # cd /opt/ # wget http://download.oracle.com/otn-pub/java/jdk/7u67-b01/jdk-7u67-linux-x64.tar.gz?AuthParam=1410461115_7bfe6685f15c82dcaaedb31561201f2b Note:...

How To Install Apache Web Server on Centos/RHEL

How To Install Apache Web Server on Centos/RHEL 1. Install Apache: # yum -y install httpd httpd-devel 2. Edit httpd.conf file: # vi /etc/httpd/conf/httpd.conf #ServerName www.example.com:80 Just Add this Line- ServerName ip address of server:80 Check this Line-991 NameVirtualHost...

How to Install And Deploy a Meteor App on Centos 6.X

INSTALL AND DEPLOY A METEOR APP ON CENTOS ** Production Environment: 1. Centos 2. Apache ** Software Stack on production: 1. Mongo DB 2. Node.js 0.1.100 3. NodeJS “Forever” module to start application in the background Step 1: Just make sure that all the development...

How to Install Tomcat7 on Centos/RHEL 6.X

Install Tomcat7 on Centos/RHEL Make sure apache configuration is done. Step 1. Install JAVA # wget --no-check-certificate --no-cookies --header 'Cookie: oraclelicense=accept-securebackup-cookie' http://download.oracle.com/otn-pub/java/jdk/8u5-b13/jdk-8u5-linux-x64.rpm ...

How to Install Wetty (WEB+TTY) on Centos

Install Wetty (WEB+TTY) on Centos As a system administrator, you probably connect to remote servers using a program such as GNOME Terminal (or the like) if you’re on a Linux desktop, or a SSH client such as Putty if you have a Windows machine, while you perform other...

How to Install OrangeHRM on Centos

How to install OrangeHRM on Centos Step 1. Requirments: Apache, Mysql and Php Step 2: Download the OrangeHRM Package and Create the Apache Environment to Run it: # cd /tmp # wget http://nchc.dl.sourceforge.net/project/orangehrm/stable/3.3.2/orangehrm-3.3.2.zip # unzip...