Tag archives: tutorials

RSS feed of tutorials

Setup and Install Git on CentOS 6.5

Setup and Install Git on CentOS 6.5

Introduction

Git is a source code management system. It allows a teams to collaborate on projects, using the same files. Git watches for changes in your files and and allows for files to be shared between small or large groups of people.

We recommend this free online book to really learn more about Git and ...

Read More


A Brief Introduction to Docker

A Brief Introduction to Docker

Introduction

Application stacks are continually getting more complicated and have always been a challenge to deploy without problems. Docker specializes in containers, which make the process easier for developers to rapidly deploy and manage applications.

Docker containers use shared operating systems. Instead of virtualizing hardware, containers use one single Linux install. This in turn means ...

Read More


12 Essential Wordpress Security Tips

12 Essential Wordpress Security Tips

In light of the recent XSS security flaw here are some tips and tricks for Wordpress security.

...

Read More


How to install php-mcrypt on CentOS 6

How to install php-mcrypt on CentOS 6

After installing tools like phpMyAdmin on CentOS 6, you see the following warning:

The mcrypt extension is missing. Please check your PHP configuration

Here's a quick guide to fix it.

You will need EPEL repo to install php-mcrypt:

yum -y install http://mirror.us.leaseweb.net/epel/6/x86_64/epel-release-6-7.noarch.rpm

yum -y install ...

Read More


How to Install nginx on Ubuntu 12.10

How to Install nginx on Ubuntu 12.10

Introduction

Nginx is a free, Open Source Web server. It is much more lightweight than Apache and it can be used as the main web server software or be set up as a reverse proxy for Apache.

...

Read More