排序
Linux – NGINX编译提示需要LuaJIT 2.x.的解决办法
报错代码: ./configure: error: unsupported LuaJIT version; ngx_http_lua_module requires LuaJIT 2.x. 解决方法: 先查看是否已安装lua-devel,直接执行安装即可 CentOS: yum install lua-d...
Linux – 部署gcc编译环境
部署gcc编译环境 Centos 由于centos7停止更新,默认yum源无法使用,可以先使用脚本进行修复 bash <(curl -sSL https://linuxmirrors.cn/main.sh) 安装gcc编译环境的软件包 yum -y install cm...
Centos7安装SCL YUM源
前言 由于CentOS已经停止维护,正常yum安装的源无法正常使用,需要手动修改为其他源 1.先安装官方的源 yum install centos-release-scl centos-release-scl-rh -y 2.修改为清华源 需要修改的文件...
Centos7.6-glibc版本升级至2.30
安装基础库: yum install -y texinfo mlocate bzip2 bison 使用它安装devtoolset-8(安装为gcc8以上版本) 首先安装Centos的scl软件源,参考: 然后安装gcc8等相关软件 yum install devtoolset-...
python-selenium报错解决大全
selenium安装教程: 报错列表 错误1:\'ascii\' codec can\'t encode characters in position 0-1: ordinal not in range(128)] 错误2 : session not created: DevToolsActivePort file doesn\'t ...
Ubuntu 20.04 / 18.04 下如何安装或更新至 PHP 8?
本指南让你了解如何安装最新的 php 版本 8,并在你的任何 VPS、云服务器、专用主机上的 Ubuntu 20.0 或 18.04 系统中升级到最新版本,并将其配置为 Apache 和 Nginx。 最新的 php 8 正式发布于 ...
linux – 安装Python-selenium+webdriver(Centos、ubuntu)
略过Python的安装教程 首先安装selenium pip3 install selenium 如果系统自带的python未安装pip,使用apt进行安装pip模块 sudo apt install -y 安装google-chrome linux版 Ubuntu: 安装最新稳...
Ubuntu22.04编译安装nginx时报错error: ‘ENGINE_free’ is deprecated: Since OpenSSL 3.0
编译时添加编译参数即可 ./configure --with-cc-opt='-Wno-error -Wno-deprecated-declarations'
如何在 CentOS 8/RHEL 8 上安装 PHP 7.4
特别注意: 安装后有看不到端口监听情况,需要创建php测试文件进行测试,原因未知 第 1 步:添加 EPEL 和 REMI 存储库 EPEL 和 REMI 存储库是此安装的主要要求。通过运行以下命令将它们添加到系...
MySql8.0 – 授权用户出现You are not allowed to create a user with GRANT
MySql8有新的安全要求,不能像之前的版本那样一次性创建用户并授权需要先创建用户,再进行授权操作 首先创建新用户: create user 'username'@'host' identified by '...