摘要:
下载升级的版本软件包 # 官网下载地址,选择自己想要的版本 https://nginx.org/en/download.html 解压到新文件夹 cd /server tar -zxvf nginx-1.26.2.tar.gz 编译 # 查询旧版本参数 [root@hcss-ecs-df46 ngi 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <!-- 本地引用 --> <!-- <link rel="stylesheet" href="css/element-plus.css" /> <script 阅读全文
摘要:
use information_schema; select table_name,table_rows from tables where TABLE_SCHEMA = 'reconciliation_platform' order by table_rows desc; 阅读全文
摘要:
原因 SELinux(安全增强型 Linux)阻止了 mysqld 服务绑定到你在 my.cnf 中设置的端口(这里是 13306 端口) 解决方案 # 如果你的环境允许且确实需要启用 nis_enabled 布尔值来解决问题,可以执行以下命令 setsebool -P nis_enabled 1 阅读全文
摘要:
亲测有效 https://blog.csdn.net/wqc19920906/article/details/79791322 阅读全文
摘要:
依赖 <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> 代码 package com.dl.dml.business.test.tes 阅读全文
摘要:
u-picker和u-datetime-picker嵌入在input展示后,点击input会先召唤出键盘,关闭键盘才会显示对应的u-picker和u-datetime-picker事件,通过以下方案解决 <!-- 套壳使用事件,增加pointer-events: none;让input事件失效,然后 阅读全文
摘要:
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="192.168.xx.xx" port protocol="tcp" port="18848" accept' firewall-cmd --pe 阅读全文
摘要:
win键和alt反过来了 fn+w切换到win模式 win键不好使 可能是锁定了,使用fn+win解锁 不能单独使用f2 使用fn + w 键切换 阅读全文
摘要:
参考:https://zhuanlan.zhihu.com/p/589407812 阅读全文