Pages open slow

#1
Hi all, I' running one public rapidleech (all funcitions of script are disabled, exept transload) server under:
1x 2.4GHz
2gb ram
450gb HD
litespeed vps edition
php5 with APC, no mysql, no ror

the cpu load and ram usage is low:
2.00 ~ 3.00
160mb of 2gb

the problem is the pages loads are very slow, Page Load: 29.100677967072 sec

What configs i need to change to it open more fast?
 

webizen

Well-Known Member
#7
%
seems bottleneck is i/o (i/o wait 96% ). are you doing a lot of file upload/download? you could put upload/download files on a separate drive or setup opcode cache in /dev/shm to avoid disk contention.
 
#8
%
seems bottleneck is i/o (i/o wait 96% ). are you doing a lot of file upload/download? you could put upload/download files on a separate drive or setup opcode cache in /dev/shm to avoid disk contention.
basically I use this server only for uploads/downloads of large files, sorry for noob question, but how I setup opcode cache in /dev/shm ?
 

webizen

Well-Known Member
#9
opcode cache being APC, xcache, or EAccelerator.

You already have APC setup which should use shm once enable. You may check the settings from command line:
/usr/local/lsws/fcgi-bin/lsphp5 -i| egrep 'apc.shm|apc.cache|apc.mmap'
 
Top