xcache 설치

· 2012-03-11 (일) 10:28:29 · 3991
출처: 여리닷컴
 
xcache 설치
xcache는 제로보드XE와 같은 class/object기반의 프로그램들을 보다 빠르고 가볍게 해주는 캐쉬 프로그램입니다.
APC나 eaccelerator 속도도 더 빠르다고 알려져 있구요.
php5.2.0에 돌아가는 xcache 1.2.2 을 기준으로 설치법을 알려드립니다.
wget http://xcache.lighttpd.net/pub/Releases/1.2.2/xcache-1.2.2.tar.gz

tar xvfz xcache-1.2.2.tar.gz
cd xcache-1.2.2
phpize
./configure --enable-xcache --enable-xcache-coverager
make
make install
cat xcache.ini >> /etc/php.ini

위에서 phpize나 configure시에 php 실행파일들의 경로 문제가 생길 수 있습니다.
1번처럼 php를 /usr/local/php/bin 에 실행파일이 생기게 했다면 아래와 같이 미리 PATH를 지정해주세요.

export PATH="$PATH:/usr/local/php/bin"

그 다음 /etc/php.ini 파일을 여세요.
만약 zend optimizer등을 설치하였다면 xcache 설정중 zend_extension이 zend optimizer보다 위에 있어야 합니다.

저는 아래와 같이 설정하였습니다.
[Zend]
zend_extension_manager.optimizer=/usr/local/Zend/lib/Optimizer-3.3.3
zend_extension_manager.optimizer_ts=/usr/local/Zend/lib/Optimizer_TS-3.3.3
zend_optimizer.version=3.3.3
zend_extension_ts = /usr/local/php/lib/php/extensions/no-debug-zts-20060613/xcache.so
zend_extension=/usr/local/Zend/lib/ZendExtensionManager.so
zend_extension_ts=/usr/local/Zend/lib/ZendExtensionManager_TS.so
[xcache-common]
;; install as zend extension (recommended), normally "$extension_dir/xcache.so"
;zend_extension_ts = /usr/local/lib/php/extensions/non-debug-non-zts-xxx/xcache.so
; zend_extension_ts = /usr/local/lib/php/extensions/non-debug-zts-xxx/xcache.so
;; For windows users, replace xcache.so with php_xcache.dll
;zend_extension_ts = c:/php/extensions/php_xcache.dll
;; or install as extension, make sure your extension_dir setting is correct
; extension = xcache.so
;; or win32:
; extension = php_xcache.dll
[xcache.admin]
xcache.admin.enable_auth = Off
xcache.admin.user = "admin"
; xcache.admin.pass = md5($your_password)
xcache.admin.pass = ""
[xcache]
; ini only settings, all the values here is default unless explained
; select low level shm/allocator scheme implemenation
xcache.shm_scheme =        "mmap"
; to disable: xcache.size=0
; to enable : xcache.size=64M etc (any size > 0) and your system mmap allows
xcache.size  =                64M
; set to cpu count (cat /proc/cpuinfo |grep -c processor)
xcache.count =                 1
; just a hash hints, you can always store count(items) > slots
xcache.slots =                8K
; ttl of the cache item, 0=forever
xcache.ttl   =                 0
; interval of gc scanning expired items, 0=no scan, other values is in seconds
xcache.gc_interval =           0
; same as aboves but for variable cache
xcache.var_size  =            64M
xcache.var_count =             1
xcache.var_slots =            8K
; default ttl
xcache.var_ttl   =             0
xcache.var_maxttl   =          0
xcache.var_gc_interval =     300
xcache.test =                Off
; N/A for /dev/zero
xcache.readonly_protection = On
; for *nix, xcache.mmap_path is a file path, not directory.
; Use something like "/tmp/xcache" if you want to turn on ReadonlyProtection
; 2 group of php won't share the same /tmp/xcache
; for win32, xcache.mmap_path=anonymous map name, not file path
xcache.mmap_path =    "/dev/zero"

; leave it blank(disabled) or "/tmp/phpcore/"
; make sure it's writable by php (without checking open_basedir)
xcache.coredump_directory =   ""
; per request settings
xcache.cacher =               On
xcache.stat   =               On
xcache.optimizer =           On
[xcache.coverager]
; per request settings
; enable coverage data collecting for xcache.coveragedump_directory and xcache_coverager_start/stop/get/clean() functions (will hurt executing performance)
xcache.coverager =          On
; ini only settings
; make sure it's readable (care open_basedir) by coverage viewer script
; requires xcache.coverager=On
 
위의 설정중 xcache.admin.user와 xcache.admin.pass는 xcache 관리자 페이지를 사용할 경우 입력해주면 됩니다.
패스워드 생성 방법은 아래와 같이 하면됩니다echo -n password | md5sum
password 자리에 abcdefg 입력후 변환 하면 아래와 같다.
[root@adminplay php]# echo -n abcdefg | md5sum
7ac66c0f148de9519b8bd264312c4d64  -
참고로 관리자 페이지는 xcache 소스중 admin 이라는 디렉토리에 있고 이admin 디렉토리를
웹에서 접근할 수 있는 곳에 복사해주시면 됩니다.
페이지는 아래 화면을 참고 하세요

XCache.JPG



xcache.size나 xcache.var_size는 적절히 해주시면 됩니다.xcache.count와 xcache.var_count는 cpu process의 수를 적어주시면 됩니다.
cat /proc/cpuinfo |grep -c processor
위와 같이 명령어를 입력하면 프로세스의 수가 나옵니다.
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-08-29 조회 5,456
12-08-21 조회 3,444
12-08-21 조회 3,531
12-08-05 조회 3,350
12-08-04 조회 4,323
12-07-31 조회 9,204
12-07-26 조회 3,860
12-07-24 조회 3,490
12-07-20 조회 3,424
12-07-15 조회 3,297
12-07-09 조회 4,662
12-07-09 조회 3,373
12-07-09 조회 3,284
12-07-06 조회 4,103
12-07-05 조회 3,202
12-07-05 조회 3,276
12-06-30 조회 3,405
12-06-29 조회 3,201
12-06-26 조회 3,401
12-06-18 조회 3,278
12-06-18 조회 3,380
12-05-31 조회 3,594
12-05-29 조회 4,349
12-05-23 조회 3,388
12-05-22 조회 3,638
12-05-17 조회 4,446
12-05-10 조회 3,467
12-05-06 조회 3,342
12-05-04 조회 3,025
12-04-25 조회 3,477
12-04-21 조회 2,990
12-04-21 조회 4,396
12-04-20 조회 3,538
12-04-10 조회 2,954
12-04-06 조회 2,832
12-04-05 조회 3,174
12-04-05 조회 3,845
12-03-31 조회 2,967
12-03-30 조회 3,060
12-03-29 조회 2,978
12-03-28 조회 2,996
12-03-27 조회 3,312
12-03-26 조회 3,706
12-03-23 조회 2,895
12-03-20 조회 2,956
12-03-12 조회 2,884
12-03-12 조회 3,229
12-03-12 조회 3,141
12-03-12 조회 4,094
12-03-12 조회 5,607
12-03-12 조회 3,685
12-03-12 조회 5,493
12-03-12 조회 3,696
12-03-12 조회 6,052
12-03-06 조회 3,011
12-03-04 조회 4,144
12-03-02 조회 4,009
12-02-16 조회 5,129
12-02-15 조회 4,471
12-02-11 조회 2,973
12-02-08 조회 2,823
12-02-08 조회 3,842
12-02-07 조회 3,243
12-01-30 조회 2,936
12-01-29 조회 3,361
12-01-25 조회 3,353
12-01-19 조회 2,885
12-01-12 조회 3,033
11-12-30 조회 3,664
11-12-29 조회 3,023
11-12-26 조회 3,050
11-12-26 조회 2,939
11-12-17 조회 4,072
11-12-17 조회 3,268
11-12-01 조회 3,043
11-11-19 조회 4,221
11-11-14 조회 4,102
11-11-14 조회 2,726
11-11-10 조회 2,961
11-11-10 조회 3,627
11-10-27 조회 2,470
11-10-26 조회 2,583
11-10-25 조회 2,461
11-10-17 조회 3,619
11-10-10 조회 2,535
11-10-03 조회 2,589
11-09-28 조회 2,471
11-09-28 조회 3,969
11-09-26 조회 2,451
11-09-26 조회 2,568
11-09-25 조회 2,856
11-09-19 조회 6,015
11-09-09 조회 2,932
11-09-08 조회 3,300
11-08-31 조회 3,101
11-08-29 조회 5,088
11-08-25 조회 2,767
11-08-23 조회 2,448
11-08-21 조회 2,457
11-08-19 조회 2,381