我已经在我的新CENOS7上安装了lighttpdon。
当我尝试访问我的IP时,它正在加载,而不是最终显示站点无法访问(ERR_CONNECTION_TIMED_OUT)。
WHen runnig systemctl status lighttpd -l,看起来服务已经启动并运行了。
有什么想法吗?
[root@myvps ~]# systemctl status lighttpd -l
● lighttpd.service - Lightning Fast Webserver With Light System Requirements
Loaded: loaded (/usr/lib/systemd/system/lighttpd.service; enabled; vendor preset: disabled)
Active: active (running) since Tue 2020-02-11 09:50:53 CET; 19min ago
Main PID: 7559 (lighttpd)
CGroup: /system.slice/lighttpd.service
└─7559 /usr/sbin/lighttpd -D -f /etc/lighttpd/lighttpd.conf
Feb 11 09:50:53 myvps.mydomain.net systemd[1]: Stopped Lightning Fast Webserver With Light System Requirements.
Feb 11 09:50:53 myvps.mydomain.net systemd[1]: Started Lightning Fast Webserver With Light System Requirements.
Feb 11 09:50:53 myvps.mydomain.net lighttpd[7559]: 2020-02-11 09:50:53: (network.c.162) warning: please use server.use-ipv6 only for hostnames, not without server.bind / empty address; your config will break if the kernel default for IPV6_V6ONLY changes
Feb 11 09:50:53 myvps.mydomain.net lighttpd[7559]: 2020-02-11 09:50:53: (server.c.1437) can't have more connections than fds/2: 1024 1024
[root@myvps ~]#发布于 2020-02-11 20:50:27
通过运行以下命令来解决
firewall-cmd --permanent --add-service=http
success
[root@myvps~]# firewall-cmd --reload
success在网上的某个地方找到的。
https://stackoverflow.com/questions/60165348
复制相似问题