重启解决iLO控制卡无法访问
之前写过Dell iDRAC控制卡访问不了的文章:https://blog.whsir.com/post-7357.html,本次来说下HPE的iLO控制卡处理办法。 解决办法:重启iLO控制卡,我这里以HPE ProLiant DL380 Gen10 ser … 阅读全文
之前写过Dell iDRAC控制卡访问不了的文章:https://blog.whsir.com/post-7357.html,本次来说下HPE的iLO控制卡处理办法。 解决办法:重启iLO控制卡,我这里以HPE ProLiant DL380 Gen10 ser … 阅读全文
当前elasticsearch版本8.11.4,报错内容如下:
1 2 3 |
[ERROR][o.e.b.Elasticsearch ] [ceph1] node validation exception [1] bootstrap checks failed. You must address the points described in the following [1] lines before starting Elasticsearch. For more information see [https://www.elastic.co/guide/en/elasticsearch/reference/8.11/bootstrap-checks.html] bootstrap check failure [1] of [1]: memory locking requested for elasticsearch process but memory is not locked; for more information see [https://www.elastic.co/guide/en/elasticsearch/reference/8.11/_memory_lock_check.html] |
这是因为在elasticsearch配置文件中开启了bootstrap.memory_lock: true参数。 解决办法: 1、 … 阅读全文
当前elasticsearch版本8.11.4,报错内容如下:
1 2 3 |
[ERROR][o.e.b.Elasticsearch ] [ceph1] node validation exception [1] bootstrap checks failed. You must address the points described in the following [1] lines before starting Elasticsearch. For more information see [https://www.elastic.co/guide/en/elasticsearch/reference/8.11/bootstrap-checks.html] bootstrap check failure [1] of [1]: initial heap size [2147483648] not equal to maximum heap size [4294967296]; this can cause resize pauses and prevents memory locking from locking the entire heap; for more information see [https://www.elastic.co/guide/en/elasticsearch/reference/8.11/_heap_size_check.html] |
这是因为jvm的参数原因,把jvm的参数设置为相等,我这里基于rpm包安装的,所以修改以下配置。 [crayon-66ff7047 … 阅读全文
提到删除文件,首先想到的就是rm命令,但并不是所有的文件删除都需要通过rm命令,本文重点来普及下,在Linux命令行中如何正确的删除文件。 1、删除单一文件 unlink命令:用于删除指定的单一文件,只能同时删除一个文件或链接,不能删除目录,不能批量删除,适合 … 阅读全文
RHEL8.x,RockyLinux8.x、AlmaLinux8.x等相关8.x的系统使用yum/dnf补全本地包组时会出现卡顿现象。 这是因为使用yum install或dnf install进行包组的Tab补全时,不仅需要查找本地补全的文件,也同时查找网络 … 阅读全文
本文基于RockyLinux8.9系统,使用传统异步方式来做MySQL主从同步,本文中所使用的MySQL版本为8.0.35,配置过程中不影响主库的正常运行,请确保主从服务器时间一致性,防火墙相应的规则已配置。 MySQL主从为什么不用master、slave了 … 阅读全文
在使用WLNMP一键安装包安装PHP时,我们通常能够快速完成基础环境的搭建。然而,由于PHP拥有众多扩展模块,WLNMP一键安装包可能并未涵盖所有需要的扩展。本文将详细介绍如何自行添加PHP扩展模块,以及通过实例演示在Rocky Linux 8.x系统上使用W … 阅读全文
首先我们来回顾下CentOS停服通知 2020年12月8日,红帽公司宣布将停止开发“CentOS”系统,项目重点转移至“CentOS Stream”,将“CentOS Stream”系统作为红帽企业版(RHEL)的上游分支,至此“CentOS 8”彻底变更成了 … 阅读全文
之前写过CentOS7.x升级至RockyLinux8.x教程,有很多人反馈说centos7升级8.x后,还存有原centos7的3.10内核,启动时在grub菜单处也可看到的问题,本文基于RockyLinux8.x系统为例讲解下,如何在RockyLinux8 … 阅读全文
CentOS7于2024年06月30日停止维护,新装的系统是时候考虑8.x的系统来替代了,因为CentOS8.x停止维护的原因,所以导致8.x的系统衍生出了很多个版本,比如国外的RockyLinux8.x、AlmaLinux8.x,国内的AnolisOS8.x … 阅读全文