CentOS 7 + Lighttpd,Web服务器无法正常工作



我已经安装了我的新CENOS 7

。当我尝试访问我的 IP 时,它正在加载,而不是最终说无法访问该站点,(ERR_CONNECTION_TIMED_OUT(。

在运行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 ~]#

通过运行解决

firewall-cmd --permanent --add-service=http
success
[root@myvps~]# firewall-cmd --reload
success

在网上的某个地方找到了它。

最新更新