How to Install MySQL 5.7 on Centos/RHEL 6.X/7.X

Step 1: Save the Repo File for The MySql 5.7 or Install the RPM for Mysql 5.7 vi /etc/yum.repos.d/mysql-community.repo [mysql57-community] name=MySQL 5.7 Community Server baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/ enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql — save n quit (:wq) — or, ————— On RHEL/CentOS 7 ————— wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm yum localinstall mysql57-community-release-el7-7.noarch.rpm ————— On RHEL/CentOS 6 ————— wget http://dev.mysql.com/get/mysql57-community-release-el6-7.noarch.rpm yum localinstall mysql57-community-release-el6-7.noarch.rpm …

How to Install uTorrent on Centos/RHEL 6.X

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 ln -s /usr/lib64/libssl.so.0.9.8e /usr/lib64/libssl.so.0.9.8 Step 3: Download uTorrent for Linux and Extract it cd /mnt && wget -qO – …

How to Install LAMP on Centos/RHEL 6.X

Install LAMP With Php and MySLQ 5.6 Version on Centos/RHEL 6.X Requirement: A. Centos/RHEL 6.x OS Server B. Apache Web Server 2.0 (httpd) C. MySQL Database Server 5.6 D. PHP Scripting Language 5.6 E. phpMyAdmin 4.3.10 – Web based MySQL Administration Tool Step 1. Install Apache: # yum -y install httpd httpd-devel Step 2. Edit …