09 2024 档案
摘要:# 指定集群名称3个节点必须一致cluster.name: es-cluster#指定节点名称,每个节点名字唯一node.name: node-1#是否有资格为master节点,默认为truenode.master: true#是否为data节点,默认为truenode.data: true# 绑定
阅读全文
摘要:2.1下载安装包并解压cd /home/filebeatwget https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.10.1-linux-x86_64.tar.gztar -xvf filebeat-7.10.1-lin
阅读全文
摘要:打开mac终端 执行命令arch,确定返回结果为arm64 执行命令arch -x86_64 zsh 再次执行命令arch,确定现在的返回结果是i386 执行命令nvm install 14,这时候你就发现node14可以安装了
阅读全文
摘要:export NVM_NODEJS_ORG_MIRROR=https://npmmirror.com/mirrors/node/
阅读全文
摘要:alter user 'root'@'localhost' identified with 'mysql_native_password' by 'rootQWE!@#';
阅读全文
摘要:一、缓冲池14.5.1 Buffer Pool缓冲池是主内存中的一个区域,InnoDB在访问表和索引数据时将其缓存。缓冲池允许直接从内存访问经常使用的数据,从而加快处理速度。在专用服务器上,高达80%的物理内存通常分配给缓冲池。 为了提高大容量读取操作的效率,缓冲池被划分为可能容纳多行的页
阅读全文