Changes between Version 10 and Version 11 of jazz/11-01-25


Ignore:
Timestamp:
Jan 25, 2011, 3:07:27 PM (13 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/11-01-25

    v10 v11  
    5050 * <12> Lazy management of a secure gateway - Mark Suter
    5151  * http://netflow.cesnet.cz/ - !NetFlow Monitor
     52  * http://zwitterion.org/talks/sgs-20110125/lazy-gateway.pdf
    5253 * <13> Bare metal recovery - Caesar Sun
    5354 * <14> Resource allocation using cgroups - Steven Ellis
    5455  * cgroup (control group) 是 Linux 核心 2.6.27 以後的新功能,看起來有助於管理虛擬機器的權限。
     56  * Resource controllers includes (1) CPU/CPUSET (2) Memory (3) Network (4) I/O
     57  * 可以控制每個虛擬機器可以用的 CPU, Memory, Network & Disk I/O 資源比例為何
     58  * http://libcg.sourceforge.net/ - libcgroup
    5559  * http://www.kernel.org/doc/Documentation/cgroups/cgroups.txt
    5660  * [http://berrange.com/posts/2009/12/03/using-cgroups-with-libvirt-and-lxckvm-guests-in-fedora-12/ Using CGroups with libvirt and LXC/KVM guests in Fedora 12]
    5761  * [http://www.serverwatch.com/print.php/3920051 Introduction to Linux Cgroups]
     62  * 安裝方法:
     63{{{
     64~$ sudo apt-get install cgroup-bin libcgroup1
     65}}}
     66 * 編輯 /etc/cgconfig.conf
     67 * Apache Example - /etc/cgconfig.conf
     68{{{
     69group http {
     70   memory {
     71     memory.limit_in_bytes = 1024
     72   }
     73}
     74}}}
     75 * Apache Example - /etc/sysconfig/httpd
     76{{{
     77 CGROUP_DAEMON="memory:/virt
     78}}}
    5879 * <15> Varnish and HTTP acceleration - Simon Lyall
    5980