Error 500 Internal Server Error after update to 5.0 RC3

mistwang

LiteSpeed Staff
#2
You need to install more 32bits libraries to make the 32bits /usr/local/lsws/admin/fcgi-bin/admin_php5 binary works under centos 7 64bits.
 
#3
Hi,

Similar story here. On Ubuntu 12.04 64bit (production server with 4.2.22,tried to upgrade to 5.0RC3) and on a test machine as well (ubuntu 14.04 64bit, clean install)
Admin page throws 500, Php info page throws error 503.

ia32-libs already installed, what else is missing?

Thanks.
 

Attachments

wanah

Well-Known Member
#5
Seems like I've got the same problem with litespeed 5.0 stable on Cloudlinux 6

Code:
ldd /usr/local/lsws/admin/fcgi-bin/admin_php5
    linux-vdso.so.1 =>  (0x00007fff76f29000)
    libcrypt.so.1 => /lib64/libcrypt.so.1 (0x0000003ee4400000)
    libresolv.so.2 => /lib64/libresolv.so.2 (0x0000003130000000)
    librt.so.1 => /lib64/librt.so.1 (0x000000312f400000)
    libm.so.6 => /lib64/libm.so.6 (0x000000312ec00000)
    libdl.so.2 => /lib64/libdl.so.2 (0x000000312e400000)
    libnsl.so.1 => /lib64/libnsl.so.1 (0x0000003137800000)
    libc.so.6 => /lib64/libc.so.6 (0x000000312e000000)
    libfreebl3.so => /lib64/libfreebl3.so (0x0000003ee4800000)
    libpthread.so.0 => /lib64/libpthread.so.0 (0x000000312e800000)
    /lib64/ld-linux-x86-64.so.2 (0x000000312dc00000)
 
#7
I still have problem with 5.0, same as with 5.0RC3. I forgot to say, that I want to run the i386 version on a x64 system.
The stock demo html site works, but the php info page, cgi script (lscgid: request validation failed!) and the admin site doesn't.
It seems like it failes to start the external apps, maybe permission problem?

I can run the admin_php5 from command line without errors.

Any suggestion? :)

Thanks!

Code:
ldd fcgi-bin/admin_php5
        linux-gate.so.1 =>  (0xb77de000)
        libcrypt.so.1 => /lib/i386-linux-gnu/libcrypt.so.1 (0xb779a000)
        libresolv.so.2 => /lib/i386-linux-gnu/libresolv.so.2 (0xb7782000)
        librt.so.1 => /lib/i386-linux-gnu/librt.so.1 (0xb7778000)
        libm.so.6 => /lib/i386-linux-gnu/libm.so.6 (0xb774c000)
        libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xb7747000)
        libnsl.so.1 => /lib/i386-linux-gnu/libnsl.so.1 (0xb772d000)
        libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xb7583000)
        libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xb7567000)
        /lib/ld-linux.so.2 (0xb77df000)
 
#8
Update:
Tried the following combinations (clean install in virtualbox):
- Ubuntu 12.04 x86 + 5.0 Std i386 -> same errors
- Ubuntu 12.04 x86 + 4.2.23 Std i386 -> OK
- Ubuntu 12.04 x86 + 5.0 Ent i386 -> same errors
- Ubuntu 12.04 x86 + 4.2.23 Ent i386 -> OK
- Ubuntu 12.04 x64 + 5.0 Ent x64 -> OK
- Ubuntu 12.04 x64 + ia32-libs + 5.0 Std x86 -> same errors
- Ubuntu 12.04 x64 + ia32-libs + 4.2.23 Std x86 -> OK

Too bad, that I would like to use the standard version...
 
Top