ELK
elasticsearch 定义:Elasticsearch 是基于 JSON 的 DSL(Domain Specific Language)来定义查询。; 1. Mysql: 擅长事务类型操作,可以确保数据的安全和一致性; Elasticsearch:; 擅长海量数据的搜索、分析、计算; 对查询性能要求较高的搜索需求; **MySQL** Elast...

Noby
  • Linux
大约 9 分钟
linux
目录结构 文件夹 英文全称 文件夹作用 -------------------- -------------------------------------- -------------------------------------------------------------------------------------------------...

Noby
  • Linux
  • Linux
大约 49 分钟
VMWare
VMware; 用于 window 安装其他系统的虚拟机; 快照:; 用于备份系统; 安装步骤; VMWare 装好以后,系统会多两块虚拟网卡; VMnet1 直接禁用 VMnet8 这个是给 NAT 模式时(桥接模式直接使用宿主机的物理网卡) 进入 BISO,启用主板的虚拟化设置; !image-20220621144721757 (https://...

Noby
  • Linux
  • Linux
大约 1 分钟
docker
菜鸟教程 网址; 安装 官方安装脚本自动安装; 设置阿里云镜像 (阿里云镜像获取地址:https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors,登陆后,左侧菜单选中镜像加速器就可以看到你的专属地址了); 在 /etc/docker/daemon.json 中写入如下内容(如果文件不存在请新建...

Noby
  • Linux
大约 23 分钟
hexo
安装 hexo hexo 的安装基于 npm 或者 cnpm; npm install -g hexo-cli; 使用 hexo 查看版本; hexo -v; 创建 hexo 项目(在空文件夹中); hexo init; 启动博客(在项目文件夹中); hexo start; 通过命令写博客; hexo new "noby test"; 通过复制 md ...

Noby
  • Linux
  • Linux
小于 1 分钟
java
java 的安装 使用压缩包安装; 1. 解压到/usr/local/src/java/ 2. 配置环境变量/etc/profile 2. 重新加载/etc/profile配置文件 source /etc/profile

Noby
  • Linux
  • Linux
小于 1 分钟
mysql
mysql 的 rpm 安装 卸载 linux 自带的 mariadb; rpm -qa | grep -i mariadb; rpm -e --nodeps; 安装; rpm -ivh mysql-community-common-5.7.35-1.el7.x86_64.rpm; rpm -ivh mysql-community-libs-5.7.3...

Noby
  • Linux
  • Linux
小于 1 分钟
nginx
nginx 的安装和基本命令 第一种方式(使用 yum 安装) 安装; yum install -y nginx; 启用 Nginx; systemctl start nginx; 设置为在系统启动时自动启动; systemctl enable nginx; 配置文件位置; cd /etc/nginx; 第二种方式(使用 makefile 文件安装) ...

Noby
  • Linux
  • Linux
大约 3 分钟
rabbitmq
安装 基础部分 rpm -ivh erlang-22.3-1.el7.x86_64.rpm; erlang 语言包; rabbitmq 的版本要和 erlang 的版本搭配:https://rabbitmq.com/which-erlang.html; rpm -ivh socat-1.7.3.2-5.el7.lux.x86_64.rpm; rabbi...

Noby
  • Linux
  • Linux
小于 1 分钟
redis
redis 的安装 使用压缩包安装; 1. 解压到/usr/local/src/redis 2. 根据已经存在的 makefile 执行安装命令: make install PREFIX=/usr/local/redis。安装到指定目录 可执行文件位置为 bin; 配置文件位于 conf; 该配置文件来自于安装解压包中的 redis.conf 文件; ...

Noby
  • Linux
  • Linux
大约 6 分钟
tomcat
tomcat 的安装 使用压缩包安装; 1. 解压到/usr/local/src/tomcat/ 2. 开放端口 1. 查看防火墙的状态: firewall-cmd --zone=public --query-port=8080/tcp 2. 添加开放端口: firewall-cmd --zone=public --add-port=8080/tcp ...

Noby
  • Linux
  • Linux
小于 1 分钟
Ubuntu
系统的安装 在 ubuntu 的官网下载 iso 文件; 通过 balenaEtcher-Portable 软件将系统烧录到 u 盘; 在 windows 中分配一个 60GB 的新磁盘,不需要格式化; 重启电脑进入 bios,关闭安全启动,重启; 进入 windows10 设置,恢复,高级启动,立即重新启动; 进入 windows 的高级启动,使用设...

Noby
  • Linux
  • Linux
  • Ubuntu
大约 3 分钟