Hướng dẫn sử dụng GIT

 Programing  Comments Off on Hướng dẫn sử dụng GIT
Jan 262018
 
Hướng dẫn sử dụng GIT

  Initialize the local directory as a Git repository. git init Add the files in your new local repository. This stages them for the first commit. git add . # Adds the files in the local repository and stages them for commit. To unstage a file, use ‘git reset HEAD YOUR-FILE’. Commit the files that […]

Tutorial Install Parallels Cloud Server

 Hệ thống, Linux  Comments Off on Tutorial Install Parallels Cloud Server
Dec 232015
 
Tutorial Install Parallels Cloud Server

Parallels Cloud Server 6.0 (PCS) is a virtualization solution that allows you to run multiple virtual machines and Containers on a single physical server. In this topic, we install PCS on Vmware                         And then, we click Agree         Select type […]

Configure Apache for SSL HTTPS CentOS 6

 Hệ thống, Linux  Comments Off on Configure Apache for SSL HTTPS CentOS 6
Nov 182015
 
Configure Apache for SSL HTTPS CentOS 6

Configure Apache for SSL HTTPS CentOS 6 Using Apache over HTTPS or SSL allows a slightly more secure setup, any computer that connects over ssl is automatically encrypted. Original Reference: http://xmodulo.com/2014/04/https-apache-web-server-centos.html   Here’s the basic instructions: Login to your server, and su to root install modssl and openssl The next Large step is to generate […]

Mô hình MVC là gì?

 Programing  Comments Off on Mô hình MVC là gì?
Nov 182015
 
Mô hình MVC là gì?

Nếu bạn là một lập trình viên, nhất là lập trình web, sẽ rất khó để bạn có thể xin được việc nếu không biết mô hình MVC. Trong post này mình sẽ trình bày đến các bạn mô hình MVC là gì theo cách hiểu của mình qua một vài dự án sử dụng […]

Why Pound is awesome in front of Varnish

 Hệ thống, Linux  Comments Off on Why Pound is awesome in front of Varnish
Nov 172015
 

We all know Varnish is awesome. I went as far as presenting a topic on Varnish then writing about it. This is a known fact. However, what happens to all that caching goodness when you want to run your entire site over SSL? Out of the box, Varnish doesn’t support it. While I’ve heard some mention that […]

Nginx SSL and Varnish

 Hệ thống, Linux  Comments Off on Nginx SSL and Varnish
Nov 172015
 
Nginx SSL and Varnish

Firstly, lets get this out of the way: Varnish does not do SSL, at all and likely won’t ever. Varnish is not a tool for connection managment, it’s a tool to cache web-pages and make them faster. That is all. To get the speed benefits of Varnish over the SSL traffic we have to run […]

Install Tomcat 8 on CentOS, RHEL, or Fedora

 Hệ thống, Linux  Comments Off on Install Tomcat 8 on CentOS, RHEL, or Fedora
Nov 172015
 

Step 1: Install JDK 1.7 You can download the latest JDK here: http://www.oracle.com/technetwork/java/javase/downloads/index.html We’ll install JDK 7, Update 60 (7u60). The JDK is specific to 32 and 64 bit versions. My CentOS box is 64 bit, so I’ll need: jdk-7u60-linux-x64.tar.gz. If you are on 32 bit, you’ll need: jdk-7u60-linux-i586.tar.gz Start by creating a new directory […]

Install pyDash

 Linux, Monitoring  Comments Off on Install pyDash
Nov 162015
 

1. Installation By default the install will be done using the Apache webserver. Fedora & Pidora Run: sudo yum -y install git python-pip httpd mod_wsgi Centos Centos 6 Run: sudo yum -y install http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm sudo yum -y install git python-pip httpd mod_wsgi Centos 5 Run: sudo yum -y install http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm sudo yum -y install git […]

Introducing JavaMelody for Server Monitoring

 Hệ thống  Comments Off on Introducing JavaMelody for Server Monitoring
Nov 162015
 
Introducing JavaMelody for Server Monitoring

The goal of JavaMelody is to monitor Java or Java EE application servers in QA and production environments. The really nice thing is sthe storage of historical data – you can have a look at the same graphs spanning a week, a month or a year without setting up any additional infrastructure. Therefore JavaMelody is […]