Search results

  1. M

    Getting Lots of Ruby Processes

    After we belive that the too much ruby process problem has been truely fixed. :)
  2. M

    Getting Lots of Ruby Processes

    No need to lower it. Web admin interface or the error log file has the version number of LSWS. "gem list" will show the LSAPI version if installed through RubyGem, if installed manually, you should know it. ;-)
  3. M

    problem with rewrite-rules for redirection

    that's because the second request condition has not been met, maybe you should add an extra flag [OR] to the first rewrite condition, when either condition has been met, the rule will be executed.
  4. M

    Maximum number of rails processes

    You can try LSAPI 1.8 at http://www.litespeedtech.com/packages/lsapi/ruby-lsapi-1.8.tar.gz , proc manager is disabled when 1 connection allowed for each app.
  5. M

    Getting Lots of Ruby Processes

    We improved the process manager in LSAPI, the spawning extra processes problem should be fixed completely. You can try LSAPI 1.8 at http://www.litespeedtech.com/packages/lsapi/ruby-lsapi-1.8.tar.gz .
  6. M

    RubyLsapi vs. PHPLsai performance

    Rails framework causes the high CPU usage. We believe rubylsapi is the fastest IPC implementation for ruby. just take a look at our comparison between LSAPI and FCGI on our blog. http://blog.litespeedtech.com/. ruby itself is pretty fast, should be comparable to PHP, it will become pretty slow...
  7. M

    .htaccess doesn't work

    OK, the bug has been identified and fixed. The reason is the customized error page for 401, the authentication header is lost when LSWS perform a internal redirection. I will PM you when a package available for you to try. Thanks for your bug report.
  8. M

    Maximum number of rails processes

    Yes, proc manager should not be used when only 1 process is allowed per rails application. So, you think that only allow 1 ruby process is allowed for each application hosted in shared environment?
  9. M

    Imagemagick 6.0.6 @ vBulletin 3.5

    IM does not relate to LSWS directly, as it is called by PHP as a shell command. It should be OK if "process limit" for lsphp external application has not been set too low. You can check lsws/logs/stderr.log and lsws/logs/error.log for runtime errors produced by PHP or IM, if any.
  10. M

    .htaccess doesn't work

    OK, thanks! I will investigate.
  11. M

    Limit vhost bandwidth

    LSWS alone cannot do monthly limit, it only throttle the realtime bandwidth usage, something like 12KB/second that. For monthly limit, you need to run a bandwidth statistic job to calculate the bandwidth useage based on access log or bandwidth log. CPanel has this kind of feature and LSWS...
  12. M

    .htaccess doesn't work

    Can you please post the whole .htaccess file if there are more configuration directives.
  13. M

    Maximum number of rails processes

    Please upgrade to Ruby LSAPI 1.7 if you have not done so. What you observed is normal for current release because the way rails process being started. There is one ruby process which only fork/manage children ruby worker process to handle requests. The process manager in the parent process is...
  14. M

    Getting Lots of Ruby Processes

    Yes, that true. LSAPI 1.7 should do much better job.
  15. M

    Imagemagick 6.0.6 @ vBulletin 3.5

    OK, good. Please double check the php.ini, make sure the same configuration as that of Apache has been used.
  16. M

    Imagemagick 6.0.6 @ vBulletin 3.5

    I think you may need to build your own PHP binary with similar options like that of apache mod_php, if you have not done so yet. How to is available in our Wiki.
  17. M

    Getting Lots of Ruby Processes

    jp_n9: Please upgrade ruby LSAPI to 1.7. Your 'Max connection' is way too high, your VPS does not have enough memory to start 300 ruby processes. your server could be DoS attacked by a simple request flood. please try '10' first. I I will take a look at your server if the problem persist with...
  18. M

    Suexec on cPanel

    PHP4 & PHP5 should be started in suEXEC mode with 2.2.1 release.
  19. M

    .htaccess doesn't work

    Yes, the fix is in 2.2.1 release, forgot to add that in the change log as it has been for a while. :)
  20. M

    Getting Lots of Ruby Processes

    When LSWS being started gracefully, all associated ruby processes should be killed after all pending requests has been served. The new LSWS instance will start it own group of ruby processes. The problem is that ruby processes won't die after being killed by LSWS. We spent some time on work...
Top