• 如何在CentOS 8中安装OpenLiteSpeed Web服务器


    OpenLiteSpeed是LiteSpeed的开源版本,是一个强大的、轻量级开源HTTP web服务器,由LightSpeed技术在GPLv3.0许可下开发。
    系统环境

    CentOS 8

    配置OpenLiteSpeed软件源

    首先将OpenLiteSpeed软件源添加到CentOS 8:

    [root@localhost ~]# rpm -ivh http://rpms.litespeedtech.com/centos/litespeed-repo-1.1-1.el8.noarch.rpm
    

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    更新软件源:

    [root@localhost ~]# dnf makecache
    
    从OpenLiteSpeed软件源安装PHP

    在这一步中,我们将使用俗称LSPHP的OpenLiteSpeed软件源安装PHP 7.4。但是在此之前,请确保使用以下命令添加了epel软件源:

    [root@localhost ~]# dnf install -y epel-release
    

    安装epel软件源后,下面安装LSPHP:

    [root@localhost ~]# dnf install -y lsphp74 lsphp74-mysqlnd lsphp74-process lsphp74-mbstring lsphp74-mcrypt lsphp74-gd lsphp74-opcache lsphp74-bcmath lsphp74-pdo lsphp74-common lsphp74-xml
    

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    使用上述dnf命令成功安装PHP软件包后,接下来我们安装MariaDB数据库服务器。

    安装MariaDB数据库

    运行下面命令安装mariadb-server:

    [root@localhost ~]# dnf install -y mariadb mariadb-server
    

    安装完成之后,启用mariadb服务的开机启动,并启动服务:

    [root@localhost ~]# systemctl enable mariadb
    [root@localhost ~]# systemctl start mariadb
    

    运行以下systemctl命令以检查mariadb服务的状态,

    [root@localhost ~]# systemctl status mariadb
    

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    默认情况下,MariaDB并不安全,因此,我们需要采取一些额外的步骤来保护MariaDB。运行以下步骤:

    [root@localhost ~]# mysql_secure_installation 
    

    首先需要为root用户设置密码
    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    对于其他的提示。只需输入“Y”以执行最佳实践设置:
    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器

    安装OpenLiteSpeed

    使用dnf包管理器来安装OpenLiteSpeed:

    [root@localhost ~]# dnf install -y openlitespeed
    

    查看以下web服务是否启动,一般情况夏安装完成自动启动:

    [root@localhost ~]# systemctl status lsws
    

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    Web服务侦听两个端口:8088和7080。端口8088用于演示,而端口7080是管理页面。

    可以使用netstat命令确认Web服务器正在侦听的端口,如下所示:

    [root@localhost ~]# netstat -tlunp
    

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    如果防火墙正在运行,需要打开下面的端口:

    [root@localhost ~]# firewall-cmd --permanent --add-port=8088/tcp
    success
    [root@localhost ~]# firewall-cmd --permanent --add-port=7080/tcp
    success
    [root@localhost ~]# firewall-cmd --reload
    success
    

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器

    更改默认管理密码

    默认情况下,管理员的密码设置为123456,我们需要更改此密码为一个非常可靠的密码。更好的是,可以设置一个其他用户为管理用户,运行下面的脚本来修改管理员配置:

    [root@localhost ~]# /usr/local/lsws/admin/misc/admpass.sh 
    

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器

    访问OpenLiteSpeed的web页面

    如果要访问OpeLiteSpeed Web服务器的默认页面,输入服务器的ip地址+8088端口。
    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    如果要访问管理页面,输入服务器的ip地址+7080端口。账号密码为上一步设置的管理员
    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器

    如何在CentOS 8中安装OpenLiteSpeed Web服务器如何在CentOS 8中安装OpenLiteSpeed Web服务器
    到此就安装结束啦!

    总结

    OpenLiteSpeed是LiteSpeed的开源版本,是一个强大的、轻量级开源HTTP web服务器,由LightSpeed技术在GPLv3.0许可下开发。

  • 相关阅读:
    python_内置函数
    python_函数进阶3
    python_函数进阶2
    微信后台的编辑模式的使用
    struts2中action的XXX_* metend={1}
    POI导出excel
    使用mybatis生成相关文件时java.sql.SQLException: Access denied for user 'root'@'localhost' (using password)
    freecms使用jsoup和quartz抓取其他网站内容
    freecms首页静态化以及模板标签 (2)
    freecms中后台添加导出excel表格功能
  • 原文地址:https://www.cnblogs.com/linuxprobe/p/14966469.html
Copyright © 2020-2023  润新知