1

我已将 Lighttpd 与 Apache 并行安装(使用端口 80)。但是启动 lig​​httpd 给了我一个错误

Starting lighttpd: 2013-04-05 15:56:17: (network.c.379) can't bind to port:  81 Permission denied 

我在 lighttpd.conf 中所做的更改:

server.port = 81
server.use-ipv6 = "disable"

我在这里想念什么?我正在使用 CentOS 6.3

netstat -ltp结果:

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name   
tcp        0      0 localhost:smux              *:*                         LISTEN      1947/snmpd          
tcp        0      0 *:mysql                     *:*                         LISTEN      15673/mysqld        
tcp        0      0 *:57071                     *:*                         LISTEN      1683/rpc.statd      
tcp        0      0 *:sunrpc                    *:*                         LISTEN      1665/rpcbind        
tcp        0      0 *:ndmp                      *:*                         LISTEN      2473/perl           
tcp        0      0 *:ssh                       *:*                         LISTEN      1959/sshd           
tcp        0      0 localhost:ipp               *:*                         LISTEN      1829/cupsd          
tcp        0      0 localhost:smtp              *:*                         LISTEN      2362/master         
tcp        0      0 *:sunrpc                    *:*                         LISTEN      1665/rpcbind        
tcp        0      0 *:http                      *:*                         LISTEN      15422/httpd         
tcp        0      0 *:45684                     *:*                         LISTEN      1683/rpc.statd      
tcp        0      0 *:ssh                       *:*                         LISTEN      1959/sshd           
tcp        0      0 localhost:ipp               *:*                         LISTEN      1829/cupsd          
tcp        0      0 localhost:smtp              *:*                         LISTEN      2362/master         
tcp        0      0 *:6556                      *:*                         LISTEN      1967/xinetd         
4

1 回答 1

0

我找到了这个参考并解决了我的问题。问题是由于 SELinux 阻止 lighttpd 使用端口 81。

[更新链接] https://www.visibilityspots.com/selinux.html

于 2013-04-05T09:12:23.353 回答