Search results

  1. S

    Install on FreeBSD - not starting

    Thank you for all the help. I'm sure I will have other minor problems but once we get it all ironed out you wont hear from us much. =]
  2. S

    Install on FreeBSD - not starting

    It can not handle that many by default? We have servers with upwards of 1-2k ips on some machines. What is the most it can handle? Timothy J. Biggs -- Senior Vice President / CIO BLUE GRAVITY COMMUNICATIONS, INC. 3495 Haddonfield Rd. Suite 6 Pennsauken, NJ 08109 Toll Free: 1-877-8...
  3. S

    STDERR question

    This error is usually because a variable is being used in a preg_* function. Usually placing the variable (denated with a $ in front of a word like $variable) inside of preg_quote() fixes this. For example $variable would become preg_quote($variable). Without seeing the code on that line though...
  4. S

    Install on FreeBSD - not starting

    Same exact thing. Any chance you could install it on an nfs mounted folder and see if it does the same for you? Timothy J. Biggs -- Senior Vice President / CIO BLUE GRAVITY COMMUNICATIONS, INC. 3495 Haddonfield Rd. Suite 6 Pennsauken, NJ 08109 Toll Free: 1-877-8 HOSTING Tel...
  5. S

    Install on FreeBSD - not starting

    It is the default generic kernel. The only changes are we have a few more modules loaded and applications that have been installed. Here are the modules we have loaded: 2 1 0xc0b08000 ea54 ipfw.ko 3 1 0xc0b17000 2364 accf_http.ko 4 1 0xc0b1a000 3a60 speaker.ko...
  6. S

    Install on FreeBSD - not starting

    Output with debug new build: ==23859== /home/lsws/bin/lshttpd.dbg ==23859== -d ==23859== Startup, with flags: ==23859== --tool=memcheck ==23859== -v ==23859== --trace-children=yes ==23859== --track-fds=yes ==23859== Estimated CPU clock rate is 1002 MHz [OK] Lease...
  7. S

    Install on FreeBSD - not starting

    Output with regular new build (I had to remove all of the duplicate "reading syms" and "redirect" stuff for it to fit): ==23545== Command line ==23545== /home/lsws/bin/lshttpd ==23545== -d ==23545== Startup, with flags: ==23545== --tool=memcheck ==23545== -v ==23545==...
  8. S

    Install on FreeBSD - not starting

    It is a full enterprise license. This is a production machine we are looking at converting to ls from apache. I was going to run ls on some of the hosts on it on different ports to test out some things. There is 2gb of ram in the machine and over 1600mb free. We cant change the os on it...
  9. S

    Install on FreeBSD - not starting

    Could you give any other suggestions as to why nfs would be the problem? We use a NetApp filer. NetApps connected over gigE are many times faster then a drive directly connected to the machine and we are running apache on that very machine with over 300 active domains without a problem. We are...
  10. S

    Litespeed .htaccess performance question

    Not sure but the regex you are using will always take the entire strings its passed from begining( ^ ) to end( $ ). Since not using an htaccess seems to be adding a / try maybe this regex which will only trap anything AFTER the / and insert it in variable $1. RewriteRule ^/(.*)$...
  11. S

    Install on FreeBSD - not starting

    I tried the .11 version. Still no go. Here is some info about the server: Freebsd 6.2 32bit Generic kernel. NFS boot/root (diskless) server. File locking enabled on nfs. Libstd++ files info: -r--r--r-- 1 root wheel 1585324 Jan 12 2007 /usr/lib/libstdc++.a lrwxrwxrwx 1...
  12. S

    Install on FreeBSD - not starting

    Any luck? Timothy J. Biggs -- Senior Vice President / CIO BLUE GRAVITY COMMUNICATIONS, INC. 3495 Haddonfield Rd. Suite 6 Pennsauken, NJ 08109 Toll Free: 1-877-8 HOSTING Tel: (856)662-9100, Fax: (856) 662-9101 Email: tim@bluegravity.com http://www.bluegravity.com
  13. S

    Install on FreeBSD - not starting

    okay, more info now: gdb /home/lsws/bin/lshttpd.dbg lshttpd.dbg.core GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain...
  14. S

    Install on FreeBSD - not starting

    I just found the option in freebsd to turn on the core dumping. Here it is to help those in the future: sysctl kern.sugid_coredump=1 The backtrace of the dump is very long but this is the first few lines and last few lines (the only lines that had addresses mapped to symbols: (gdb) bt...
  15. S

    Install on FreeBSD - not starting

    Okay the find is done, it found a few other .core files for some things before we even installed ls that arent related but no cores for it.
  16. S

    Install on FreeBSD - not starting

    There is no core file anywhere. It was the first thing I looked for as I'm used to debugging these kinds of problems. I am doing a find on the entire drive now to see if its somewhere I'm not looking.
  17. S

    Install on FreeBSD - not starting

    Was this persons problem ever resolved? I am having the same exact problem on freebsd 6.2. There is no core file produced that I can see anywhere. Here are the last few lines of the ktrace dumped: 21688 lshttpd.3.3.10 NAMI "/home/lsws/admin/fcgi-bin/admin_php" 21688...
Top