CPU使用率高,并随HHVM挂起

我在Centos 7上使用phpbb,内存为512mb,内核为1。

而我有随机挂起和高CPU使用率,当我得到我干净的phpbb安装一些url。

这是我的server.hdf文件:

idFile = /run/hhvm.pid Server { Port = 9000 Type = fastcgi SourceRoot = /home/deploy/www/mypage ExposeHPHP = 0 } Log { Level = Error UseLogFile = true File = /var/log/hhvm/hhvm-error.log Access { * { File = /var/log/hhvm/hhvm-access.log Format = %h %l %u %t \"%r\" %>s %b } } } Repo { Central { Path = /var/log/hhvm/.hhvm.hhbc } } 

这是我的nginx.conf php设置:

 index index.php index.html index.htm; try_files $uri $uri/ /index.php; location ~ .(hh|php)$ { fastcgi_keep_conn on; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } 

我使用HipHop VM 3.8.0-dev(rel)与Nginx 1.8.0和mariadb,任何线索?

在日志文件中一切似乎没问题:(

谢谢!