목록전체 글 (910)
변군이글루
Installing PCNTL module for PHP without recompiling 1) Build the pcntl module # cd php*/ext/pcntl # phpize # ./configure # make 2) Add extension=pcntl.so to /etc/php.d/pcntl.ini # cp modules/pcntl.so /usr/lib/php/modules/ # echo "extension=pcntl.so" > /etc/php.d/pcntl.ini
VMware vSphere 설명서 http://www.vmware.com/kr/support/support-resources/pubs/vsphere-esxi-vcenter-server-pubs
zeroconf(169.254.0.0/255.255.0.0) : zeroconf는 설정이 필요 없는 네트워킹(Zero configuration networking) 이란 뜻 [root@scbyun ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 172.22.252.0 0.0.0.0 255.255.255.0 U 0 0 0 bond0 169.254.0.0 0.0.0.0 255.255.0.0 U 1012 0 0 bond0 0.0.0.0 172.22.252.1 0.0.0.0 UG 0 0 0 bond0 [root@scbyun ~]# cat /etc/sysconfig/network NETWORKING..
L4 DSR 및 Loopback 설정 # sh dsrloopbacksetup.sh #!/bin/sh echo -n "DSR kernel paramater 적용(y/n) : " read type if [ "$type" = y ]; then cat /etc/sysctl.conf # DSR # Packet Forwarding 기능 (0: disable, 1: enable) net.ipv4.conf.lo.arp_ignore = 1 net.ipv4.conf.lo.arp_announce = 2 net.ipv4.conf.all.arp_ignore = 1 net.ipv4.conf.all.arp_announce = 2 EOF /sbin/sysctl -p else break fi echo "=================..