Search results

  1. N

    litespeed stuck

    it may relate to the log rotation. for example: /etc/logrotate.d>cat syslog /var/log/kernel /var/log/messages { sharedscripts postrotate /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true endscript } for lsws log, it's not necessary to execute...
  2. N

    4.0.11 realtime stats problem

    please try: chmod 701 /tmp/lshttpd
  3. N

    Hello, need configuration

    http://www.litespeedtech.com/docs/webserver/install/
  4. N

    What is lstat64 process in LSWS?

    lstat64() -- Get File or Link Information (Large File Enabled) check your error/access log, there maybe many "File Not Found" entries. The strace result tells how many resource wasted for file/directory/link not found errors. Fix "file not found" errors of your web pages, see if any...
  5. N

    Litespeed Configuration

    refer http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:php:lsapi replace "--with-apxs2=/usr/sbin/apxs" with "--with-litespeed"
  6. N

    rewrite problem ?

    RewriteRule ^example/(.*)/(.*)$ /x.php?s=example&n=$1&p=$2 [L] ===> RewriteRule ^/example/(.*)/(.*)$ /x.php?s=example&n=$1&p=$2 [L]
  7. N

    Req In Process Versus Req / sec

    please further trace what files are opened: #strace -e open,read,close -p xxx for the question lsphp5 process
  8. N

    Req In Process Versus Req / sec

    is your problem equal to: http://theybf.com/?wpmp_switcher=desktop too slow? that's because the page size is too big(~6M). this can explain why "Req In Process >> Req / sec". the web server have to take much time to read 6M from disk to serve a single request to homepage(and subsequent...
  9. N

    Litespeed Configuration

    check your phpinfo(), see if --with-mysql in "Configure Command "
  10. N

    general questions

    1. 2. http://www.litespeedtech.com/products/webserver/overview/ 3.since compatible with Apache, you can get most of them from Apache website. 4. 5. just replace Apache, you can think it's like upgrade Apache to newer version. 6.yes. refer demo...
  11. N

    Litespeed 4.0.10 Proxy Issues

    RewriteRule /test/(.*) http://backend8899/$1 [P] need define an backend8899 External App first: type:Web Server Name:backend8899 Address:127.0.0.1:8899 ...
Top