OpenLiteSpeed 是一个内置快速 PHP 模块的快速开源 Web 服务器应用程序。与Nginx或 Apache 相比,OpenLiteSpeed 以速度和性能着称。它还提供了一个基于 Web 的界面来轻松管理虚拟主机、模块和网站。
在 Rocky Linux 8 上安装 OpenLiteSpeed Web 服务器
步骤 1. 第一步是将您的系统更新到最新版本的软件包列表。为此,请运行以下命令:
sudo dnf check-update sudo dnf update sudo dnf install epel-release
步骤 2. 在 Rocky Linux 8 上安装 OpenLiteSpeed。
默认情况下,OpenLiteSpeed 在 Rocky Linux 8 基础存储库中可用。现在运行以下命令将 OpenLiteSpeed 添加到我们的存储库中:
sudo rpm -Uvh http://rpms.litespeedtech.com/centos/litespeed-repo-1.1-1.el8.noarch.rpm
然后,通过运行以下命令安装 OpenLiteSpeed Web 服务器:
sudo dnf install openlitespeed
成功安装后,启用 OpenLiteSpeed(系统启动时自动启动),启动网络服务器,并使用以下命令验证状态:
sudo systemctl enable lsws
sudo systemctl start lsws
sudo systemctl status lsws
步骤 3. 设置 OpenLiteSpeed 管理员密码。
OpenLiteSpeed 现已安装。您需要运行一些命令来更改 OpenLiteSpeed 仪表板中的默认密码:
/usr/local/lsws/admin/misc/admpass.sh
您将被要求定义管理员用户名和密码,如下所示:
Please specify the user name of administrator. This is the user name required to login the administration Web interface. User name [admin]: admin Please specify the administrator's password. This is the password required to login the administration Web interface. Password: Retype password: Administrator's username/password is updated successfully!
步骤 4. 配置防火墙设置。
OpenLiteSpeed 监听端口 8088 和 7080,因此我们必须允许这些端口访问。为此,我们可以执行以下操作:
sudo firewall-cmd --zone=public --permanent --add-port=8088/tcp sudo firewall-cmd --zone=public --permanent --add-port=7080/tcp sudo firewall-cmd --reload
步骤 5. 访问 OpenLiteSpeed Web UI。
成功安装后,打开您的网络浏览器并使用 URL 访问 OpenLiteSpeed 。您应该在 Internet 浏览器中看到以下页面:http://your-IP-address:7080
提供您的管理员用户名和密码,然后单击登录按钮。
感谢您使用本教程在 Rocky Linux 8 系统上安装 OpenLiteSpeed Web 服务器。如需更多帮助或有用信息,我们建议您查看OpenLiteSpeed 官方网站。