1 httpd yum install 설치 진행 후 아래 모듈 설치 작업
mod_file_cache.so
mod_mem_cache.so
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
[root@localhost root]# wget https://archive.apache.org/dist/httpd/httpd-2.2.15.tar.gz [root@localhost root]#tar xvfz httpd-2.2.15.tar.gz [root@localhost root]#cd httpd-2.2.15/module/cache/ [root@localhost cache]# apxs -i -a -c mod_file_cache.c [root@localhost cache]# apxs -i -a -c mod_mem_cache.c [root@localhost cache]# ll /etc/httpd/modules/*_cache.so -rwxr-xr-x. 1 root root 39664 2016-07-19 00:24 /etc/httpd/modules/mod_cache.so -rwxr-xr-x. 1 root root 22992 2016-07-19 00:24 /etc/httpd/modules/mod_disk_cache.so -rwxr-xr-x 1 root root 35903 2016-09-30 23:24 /etc/httpd/modules/mod_file_cache.so -rwxr-xr-x 1 root root 57509 2016-09-30 23:32 /etc/httpd/modules/mod_mem_cache.so |