我的目标是为 drupal 6 生产站点的操作码缓存实现 APC。到目前为止,我已经用几个 php 文件测试了 APC,其中包含和不包含其他带有 include_once 的 php 文件。
还尝试调整 shm_size、apc.include_once_override 和 apc.stat 的 apc.ini 值。每次都重新启动apache。
导致 apc.php 没有显示任何值的任何变化。(当然,改变后的 apc.ini 值会按原样显示)
每次我刷新 apc.php 测试页面时,开始时间都会重置为当前时间,显示正常运行时间 0 分钟。
apc.php -testpage 显示:
General Cache InformationAPC Version 3.1.9
PHP Version 5.2.10
APC Host xxxx.xx.xx
Server Software Apache/2.2.3 (CentOS)
Shared Memory 1 Segment(s) with 128.0 MBytes
(mmap memory, pthread mutex Locks locking)
Start Time 2011/07/26 11:53:56
Uptime 0 minutes
File Upload Support 1
Cached Files 0 ( 0.0 Bytes)
Hits 1
Misses 1
Request Rate (hits, misses) 2.00 cache requests/second
Hit Rate 1.00 cache requests/second
Miss Rate 1.00 cache requests/second
Insert Rate 0.00 cache requests/second
Cache full count 0
Cached Variables 0 ( 0.0 Bytes)
Hits 0
Misses 0
Request Rate (hits, misses) 0.00 cache requests/second
Hit Rate 0.00 cache requests/second
Miss Rate 0.00 cache requests/second
Insert Rate 0.00 cache requests/second
Cache full count 0
apc.cache_by_default 1
apc.canonicalize 1
apc.coredump_unmap 0
apc.enable_cli 0
apc.enabled 1
apc.file_md5 0
apc.file_update_protection 2
apc.filters
apc.gc_ttl 3600
apc.include_once_override 0
apc.lazy_classes 0
apc.lazy_functions 0
apc.max_file_size 16
apc.mmap_file_mask /tmp/apcphp5.095eRm
apc.num_files_hint 1024
apc.preload_path
apc.report_autofilter 0
apc.rfc1867 0
apc.rfc1867_freq 0
apc.rfc1867_name APC_UPLOAD_PROGRESS
apc.rfc1867_prefix upload_
apc.rfc1867_ttl 3600
apc.serializer default
apc.shm_segments 1
apc.shm_size 128M
apc.slam_defense 0
apc.stat 0
apc.stat_ctime 0
apc.ttl 7200
apc.use_request_time 1
apc.user_entries_hint 4096
apc.user_ttl 7200
apc.write_lock 1
Host Status Diagrams:
Free: 128.0 MBytes (100.0%) Hits: 1 (50.0%)
Used: 20.3 KBytes (0.0%) Misses: 1 (50.0%)
Detailed Memory Usage and Fragmentation:
Fragmentation: 0%
phpinfo 显示:
Server API CGI/FastCGI
APC:
Version 3.1.9
APC Debugging Enabled
MMAP Support Enabled
MMAP File Mask /tmp/apcphp5.JkKDk7
Locking type pthread mutex Locks
Serialization Support php
Revision $Revision: 308812 $
Build Date Jul 21 2011 14:31:12
我按照以下步骤查找 suexec 设置是否会阻止缓存: http ://www.litespeedtech.com/support/forum/showthread.php?t=4189
[root@host /]# ps -ef|grep lsphp
root 20402 17833 0 11:21 pts/0 00:00:00 grep lsphp
[root@host /]# ps -waux
root 17833 0.0 0.1 5004 1484 pts/0 S 10:39 0:00 bash
..表示主机上没有运行lsphp
我还阅读了以下文章和评论,得出的结论是,在我的情况下,问题不在于 suexec,因为用户 apache 是 httpd 进程所有者 http://www.brandonturner.net/blog/2009/07/fastcgi_with_php_opcode_cache/
以 root @ host 登录和启动时,也无法识别 suexec 命令
我也几乎确信主机上没有运行 cPanel 来检查那里的设置是否会在某个时间间隔重置正在运行的缓存进程
这让我几乎没有线索下一步该去哪里。我尝试将(使用 chown 和 chgrp)apache 设置为 apc.php 文件的所有者,并且一些测试 php 文件导致 500 服务器错误。
有没有办法检查文件权限是否阻止 apc 保持运行?我非常感谢任何建议或帮助。