No Image

redis-3.0.1 설치 하기

2015-06-04 KENNETH 0

  1. redis 설치 다운로드 : http://redis.io wget http://download.redis.io/releases/redis-3.0.1.tar.gz tar zxvpf redis-3.0.1.tar.gz cd redis-3.0.1 make PREFIX=/usr/local/redis install mkdir -p /usr/local/redis/etc 난 redis를 /usr/local/redis 하단에 설치하기 위해서 make 명령에 부가 옵션을 준것이고, 통상적으로 /usr/local/bin 하단에 들어가게 하려면 그냥 make  명령만 사용하면 된다. 어디까지나 개인의 취향적인 부분이고… 굳이 왜 저렇게 했는가를 묻는다면…. redis는 시스템의 기본 패키지가 아니라, 특정 목적을 가진 서비스용 패키지 이기 때문에 * 이것(redis)이 설치되어있다. * 다른 파일 & 디렉토리와 구분을 했으면 좋겠다. * 이것(redis) 업그레이드시 해당 디렉토리만 갈아 치우면 된다. * 이것(redis) 삭제해 해당 디렉토리만 삭제 하면 된다. 라는 생각으로 /usr/local/redis 를 사용했다.   2. 설정파일 redis 소스 디렉토리에 있는 것을 복사해서 사용하자 cp redis.conf /usr/local/redis/etc/6379.conf   3. 구동스크립트(redis init) redis 소스 디렉토리에 있는 것을 복사해서 사용하자. cp utils/redis_init_script /etc/init.d/redis_6379 다만, 나는 /usr/local/redis 로 위치를 강제 지정했기 때문에 init 스크립트 역시 약간의 수정을 해줘야 한다…   REDISPORT=6379 EXEC=/usr/local/redis/bin/redis-server CLIEXEC=/usr/local/redis/bin/redis-cli PIDFILE=/var/run/redis_${REDISPORT}.pid [ more… ]

No Image

리눅스에서 arp cache 삭제/초기화 하는 방법

2015-05-28 KENNETH 0

arp 상태 확인 arp -a 개인적으로 arp -n 을 하면 좀더 보기좋게 정렬되서 -n 을 사용하는게 좋다고 생각한다… 개인적으로 실행하면 아마도 정상적으로 네트워크에 참여한 상황을 기준으로 뭔가 목록(아이피 + mac주소)이 나온다.   초기화 방법 1. 터미널에서 아래 명령을 실행 2. ip -s -s neigh flush all 실행후 다시 ”arp -a ” 또는 ”arp -n” 명령으로 확인해보면 목록이 싹 사라진것을 확인할 수 있다. 윈도우에서의 결과와는 살짝 다름  

No Image

rhel limits

2015-04-17 KENNETH 0

Red Hat Enterprise Linux technology capabilities and limits   What can Red Hat® Enterprise Linux® do? Find out in this quick-glance chart of the supported and theoretical 1 limits of the platform. Specification Version 3 Version 4 Version 5 Version 6 Version 7 Maximum logical CPUs 2 x86 16 32 32 32 N/A6 Itanium 2 8 256 [512] 256 [1024] N/A6 N/A6 x86_64 8 64 [64] 160 [255] 240 [4096] 240 [5120] POWER 8 64 [128] 128 128 192 [2048] System z 64 (z900) 64 (z10 EC) 101 (zEC12) 101 (zEC12) 101 (zEC12) Maximum memory5 x86 64GB3 64GB3 16GB4 16GB4 N/A6 Itanium 2 128GB 2TB 2TB N/A6 N/A6 x86_64 128GB 256GB [1TB] 1TB 6TB [64TB]15 6TB [64TB]16 POWER 64GB 128GB [1TB] 512GB [1TB] 2TB 2TB System z 256GB (z900) 1.5TB (z10 EC) 3TB (z196) 3TB (z196) 3TB (z196) Maximum number [ more… ]

No Image

PHP 지원기간 안내 (PHP Supported Versions)

2015-04-03 KENNETH 0

Supported Versions Each release branch of PHP is fully supported for two years from its initial stable release. During this period, bugs and security issues that have been reported are fixed and are released in regular point releases. After this two year period of active support, each branch is then supported for an additional year for critical security issues only. Releases during this period are made on an as-needed basis: there may be multiple point releases, or none, depending on the number of reports. Once the three years of support are completed, the branch reaches its end of life and is no longer supported. A table of end of life branches is available. Currently Supported Versions Branch Initial Release Active Support Until Security Support Until 5.4 1 Mar 2012 3 years, 1 month ago 14 Sep 2014 6 months ago [ more… ]