linux-vserver中的Apache无法启动,无法创建套接字


8

在广泛的研究和测试中,我写了一个值得进行stackexchange的问题,我找到了一个解决方案:libapr1在guest虚拟机内部重建软件包。
我以为仍然会发布此信息,因为它可能对其他人有用。

问题

当我libapache2-mod-php5在Wheezy guest虚拟机内安装并尝试启动时,得到以下信息:

root@test01:~# /usr/sbin/apache2ctl start
[crit] (22)Invalid argument: alloc_listener: failed to get a socket for (null)
Syntax error on line 9 of /etc/apache2/ports.conf:
Listen setup failed
Action 'start' failed.
The Apache error log may have more information.
root@test01:~# tail /var/log/apache2/error.log
root@test01:~#
root@test01:~# head -n 9 /etc/apache2/ports.conf|tail -n 1
Listen 80

这是未更改的原始软件包安装,默认情况下不会启动。

我的测试

根据官方文档,Listen 80实际上很好。把它变成Listen 127.0.0.1:80给我:

[crit] (22)Invalid argument: alloc_listener: failed to get a socket for 127.0.0.1
Syntax error on line 9 of /etc/apache2/ports.conf:
Listen setup failed
Action 'start' failed.

那么,为什么Apache无法获得套接字?我运行了其他恶魔(例如,在其他Wheezy安装上为nginx;在同一安装上的exim4上监听端口25)没有问题。

环境

主办

Debian Lenny在2.6.26-2-vserver-amd64上

# vserver-info
Versions:
                   Kernel: 2.6.26-2-vserver-amd64
                   VS-API: 0x00020303
             util-vserver: 0.30.216-pre2772; Dec 13 2008, 04:56:19

Features:
                       CC: gcc, gcc (Debian 4.3.2-1) 4.3.2
                      CXX: g++, g++ (Debian 4.3.2-1) 4.3.2
                 CPPFLAGS: ''
                   CFLAGS: '-Wall -g  -O2 -std=c99 -Wall -pedantic -W -funit-at-a-time'
                 CXXFLAGS: '-g -O2 -ansi -Wall -pedantic -W -fmessage-length=0 -funit-at-a-time'
               build/host: x86_64-pc-linux-gnu/x86_64-pc-linux-gnu
             Use dietlibc: yes
       Build C++ programs: yes
       Build C99 programs: yes
           Available APIs: v13,net,v21,v22,v23,netv2
            ext2fs Source: e2fsprogs
    syscall(2) invocation: alternative
      vserver(2) syscall#: 236/glibc
               crypto api: beecrypt
   use library versioning: yes

Paths:
                   prefix: /usr
        sysconf-Directory: /etc
            cfg-Directory: /etc/vservers
         initrd-Directory: $(sysconfdir)/init.d
       pkgstate-Directory: /var/run/vservers
          vserver-Rootdir: /var/lib/vservers


Assumed 'SYSINFO' as no other option given; try '--help' for more information.

来宾

Debian Wheezy,建于 vserver $VSERVER build -m debootstrap --hostname $VSERVER --netdev eth0 --context $CONTEXT --interface v$CONTEXT=x.y.z.$CONTEXT/zz -- -d wheezy -m http://apt-proxy:9999/debian/

到目前为止的研究

到目前为止,互联网为我提供了以下几点信息:

我最大的担心是我目前的结论,那就是虚拟服务器内部的apache依赖于主机未提供的某些较新的内核功能。毕竟,Wheezy默认内核肯定不比我的2.6.26老。

我想避免不惜一切代价升级主机内核。

为什么?

  • 缺乏时间和知识(硬件是HP服务器,不知道需要注意什么)
  • Wheezy不再支持vserver(开箱即用;有关自动安装的信息,请参见1)...)
  • 已经运行的虚拟服务器要求24/7可用(整个系统是公司内部的,并且不暴露于Internet)
  • 没有第二个相同的硬件可以执行测试

我愿意修补Apache

如果有可能找出问题所在,那么我将为我的Wheezy任务构建一个定制的deb程序包。

Answers:


16

就像我在第一句话中说的那样,我已经找到了解决方案:libapr1在guest内部重建了包

我通过谷歌搜索“无效参数:alloc_listener:无法获取(null)套接字”找到了解决方案,第5个问题是无效参数废话,它提到了内核升级,并提到了另一个谈论Fedora 11 httpd问题的博客

此问题与apr-1.3.8-1中使用的三个内核调用有关:accept4(),dup3()和epoll_create1()。没有这些调用,apache将无法启动。

他提到Fedora团队已修复,因此我检查了错误报告:https : //bugzilla.redhat.com/show_bug.cgi?id=516331,尤其是第二条评论

..如果您在该Xen实例上构建自己的APR,它将正确使用较早的功能并开始工作。

铃响了。我要做的就是重建libapr1软件包,因为configure脚本会自动找出accept4不可用的内容并将其还原为accept。我就是这样的:

  • apt-get source libapr1
  • tar -xf apr_1.4.6.orig.tar.gz
  • cd apr-1.4.6
  • tar -xf ../apr_1.4.6-3.debian.tar.gz
  • dpkg-buildpackage
    最初由于缺少依赖项而失败: apt-get install debhelper autoconf autotools-dev uuid-dev doxygen libtool
  • 一段时间后,这在我安装的目录之外产生了一个debian软件包:
    dpkg -i libapr1_1.4.6-3_amd64.deb
  • 然后我刚开始使用Apache,它就起作用了!
    /etc/init.d/apache2 start

在磁盘匮乏的系统上,您可能需要在编译后删除doxygen:在我的系统上,它需要600MB以上的内存及其依赖项。


+1谢谢,非常有帮助,它也可以在serverfault.com/questions/506238/中解决我的问题,您应该将自己的答案标记为可接受的答案。
aseq 2013年

没有这样的程序包
Flash Thunder
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.