| | 45 | |
| | 46 | == I see jumpy "hits" in admin page == |
| | 47 | It is possible that u see jumpy "hits" count in admin page. i.e.: you see hits=300,000 on first load of admin page, but dropped to hits=1 in 2nd reload and back to hits=312,456 on 3rd load. |
| | 48 | |
| | 49 | This is because you have php started in different group which does not share shm with each other. But keep in mind that all childs in 1 group will share shm. So how to check and make it 1 group only? |
| | 50 | |
| | 51 | Checking: |
| | 52 | |
| | 53 | === Good Exmaple === |
| | 54 | {{{ |
| | 55 | #!ShellExample |
| | 56 | $ pstree -p |
| | 57 | | |-supervise(4913)---lighttpd(23975)-+-php-cgi(23979)-+-php-cgi(23981) |
| | 58 | | | | |-php-cgi(23982) |
| | 59 | | | | |-php-cgi(23983) |
| | 60 | | | | `-php-cgi(23984) |
| | 61 | }}} |
| | 62 | |
| | 63 | === Bad Exmaple === |
| | 64 | {{{ |
| | 65 | #!ShellExample |
| | 66 | $ pstree -p |
| | 67 | | |-supervise(4913)---lighttpd(23975)-+-php-cgi(23979)-+-php-cgi(23981) |
| | 68 | | | | |-php-cgi(23982) |
| | 69 | | | | |-php-cgi(23983) |
| | 70 | | | | `-php-cgi(23984) |
| | 71 | | +-php-cgi(23980)-+-php-cgi(23985) |
| | 72 | | | | |-php-cgi(23986) |
| | 73 | | | | |-php-cgi(23987) |
| | 74 | | | | `-php-cgi(23988) |
| | 75 | }}} |
| | 76 | |
| | 77 | See also: |
| | 78 | * http://forum.lighttpd.net/topic/847 |
| | 79 | * http://trac.lighttpd.net/trac/wiki/TutorialLighttpdAndPHP |