Redis – Environment

 Hệ thống  Comments Off on Redis – Environment
Sep 042015
 

Install Redis on Ubuntu To install the Redis on Ubuntu, go to terminal and type the following commands: $sudo apt-get update $sudo apt-get install redis-server This will install redis on your machine. Start Redis $redis-server Check if redis is working? $redis-cli This will open a redis prompt, as shown below: redis 127.0.0.1:6379> In the above […]

OPTIMIZE APACHE FOR WORDPRESS – HIGH TRAFFIC WEBSITES

 Hệ thống  Comments Off on OPTIMIZE APACHE FOR WORDPRESS – HIGH TRAFFIC WEBSITES
Sep 042015
 

OPTIMIZE APACHE FOR WORDPRESS – HIGH TRAFFIC WEBSITES This article will help you to tweak your apache server and can aceept high traffic, but let’s talk about the insides and possibilities first. Optimizing apache matters the server hardware so if you checking the solution for Shared Hosting then this article won’t help you, should check my other […]

25 Apache Performance Tuning Tips

 Hệ thống  Comments Off on 25 Apache Performance Tuning Tips
Sep 042015
 

We all know and love Apache.  Its great, it allows us to run websites on the Internet with minimal configuration and administration. However, this same ease of flexibility and lack of tuning, is typically what leads Apache to becoming a memory hog.  Utilizing these easy to understand tips, you can gain a significant performance boost […]

25 Apache Performance Tuning Tips

 Optimization  Comments Off on 25 Apache Performance Tuning Tips
Jan 132015
 

We all know and love Apache.  Its great, it allows us to run websites on the Internet with minimal configuration and administration. However, this same ease of flexibility and lack of tuning, is typically what leads Apache to becoming a memory hog.  Utilizing these easy to understand tips, you can gain a significant performance boost […]

Apache Optimization 2

 Optimization  Comments Off on Apache Optimization 2
Jan 132015
 

All the important configuration options are stored by Apache in a config file called httpd.conf that is located at /usr/local/apache/conf/httpd.conf. We will start by opening this file in your favorite text editor. For example: vi /usr/local/apache/conf/httpd.conf MaxClients Total number of concurrent connections. Locate it in the configuration file. This should be set to a reasonable […]

Apache Optimization

 Optimization  Comments Off on Apache Optimization
Jan 132015
 

The default Apache settings that cPanel sets upon install are definitely something that can be improved on. With a few small tweaks, the efficiency with which Apache runs with can be greatly improved. Please noted: This article assumes that you are using a Linux server running Apache and cPanel or Plesk, and that you are […]

How to install vnc on centos 6

 Linux, Monitoring  Comments Off on How to install vnc on centos 6
Nov 242014
 
How to install vnc on centos 6

VNC server VNC is used to display X windows sessions on remote computers.In this tutorial, we can learn how to setup VNC server on centos 6. Desktop environment is required in order to enable VNC server on centos. Install VNC on Centos 6 Before installing VNC server, make sure you have installed any Desktop environment.Step […]

Install ntopng on Centos 7

 Monitoring  Comments Off on Install ntopng on Centos 7
Oct 312014
 

This is how to compile ntopng in a fresh centos 7 x64 installation For the impatient: # yum install -y subversion autoconf automake make gcc  libpcap-devel libxml2-devel sqlite-devel libtool glib2-devel  gcc-c++$ svn co https://svn.ntop.org/svn/ntop/trunk/ntopng$ ./autogen.sh $ ./configure$ make$ ./ntopng –helpntopng x86_64 v.1.1.4 (r7865) – (C) 1998-14 ntop.org<snip> Step by step description Pull the source code […]

Install Redis on CentOS 6.5

 Database  Comments Off on Install Redis on CentOS 6.5
Oct 312014
 

Perform an update to ensure you’ve got the latest of everything in the base package. yum update Install wget so you can download a few things. yum install wget Allow yum to locate/install redis, per this page here. http://thoughts.z-dev.org/2013/05/27/install-redis-on-centos-6-4/ wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpmwget http://rpms.famillecollet.com/enterprise/remi-release-6.rpmrpm -Uvh remi-release-6*.rpm epel-release-6*.rpm” Now, install all the prerequisites yum install tar make automake […]

How to set a default gateway on CentOS

 Linux  Comments Off on How to set a default gateway on CentOS
Oct 102014
 

A default gateway is a remote host or router that your Linux host forwards traffic to when the destination IP address of outgoing traffic does not match any route in your local routing table. Configuring a default gateway on CentOS is quite straightforward. If you wish to change a default gateway temporarily at run time, […]