jenkins部署vue项目 安装nodejs 配置nodejs的源,去官网查看需要安装的版本和介绍 V8.x: # curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - yum安装node.js yum ins ...
分类:
其他好文 时间:
2021-06-23 17:07:38
阅读次数:
0
参考:https://www.linuxprobe.com/install-rabbitmq-on-centos-7.html 问题1:打不开管理页面 http://Your_Server_IP:15672/,而且观察日志发现 rabbitmq程序一直在自动重启 首先防火墙已经关了,启动服务的报错信 ...
分类:
其他好文 时间:
2021-06-23 17:07:23
阅读次数:
0
Linux Nginx日志切割脚本 版本 操作系统版本IP版本 Centos 172.21.3.220内网 7.x Nginx日志切割脚本 #!/bin/bash #设置日志文件存放目录 logs_dir="/usr/local/nginx/logs" store_dir="/data/backup ...
分类:
系统相关 时间:
2021-06-23 17:02:55
阅读次数:
0
websockect基础还有原理 省略 PS:这里我说下aiowebsocket这个依赖库,堪称垃圾中的战斗机,在Mac(Linux没测试过,但是Mac的内核是Linux,放到centOS我估计也会出这个问题)上一直报错SSL证书错误,在windowes上handshakes.py一直找不到请求头, ...
分类:
编程语言 时间:
2021-06-22 18:41:02
阅读次数:
0
Elasticsearch-文档查询 数据准备 查询 简单查询 mall/goods/1 条件查询 GET mall/goods/_search?q=b_name: "如何" 复杂查询 匹配查询 GET mall/goods/_search { "query": { "match": { "b_na ...
分类:
其他好文 时间:
2021-06-22 18:01:13
阅读次数:
0
Elasticsearch-文档精确查询(term) match & term match:匹配查询 term:精准查询 term&match + text&keyword term&match 区别 term:精确查询,对查询的值不分词,直接进倒排索引去匹配。 match:模糊查询,对查询的值分词 ...
分类:
其他好文 时间:
2021-06-22 17:59:57
阅读次数:
0
简介OS: CentOS Linux release 8.2 开始清除mysql# 查看系统信息$ cat /etc/redhat-releaseCentOS Linux release 8.2.2004 (Core) # 查看有没有mysql$ rpm -qa | grep mysqlmysql- ...
分类:
数据库 时间:
2021-06-22 17:36:24
阅读次数:
0
1、查看所有索引 GET _cat/indices 2、创建一个新的索引 PUT /test { "mappings": { "_doc": { "properties": { "id": {"type": "keyword"}, "title": {"type": "keyword"}, "esD ...
分类:
其他好文 时间:
2021-06-21 21:11:29
阅读次数:
0
升级原因:为了在本地安装跟公司测试服一样的服务器环境,需要把本地PHP版本从5.4升级到5.5。 操作步骤: 1. 查看当前centos版本 [root@localhost ~]# cat /etc/redhat-release 2. 根据当前centos版本,更换对应版本的RPM 源(软件仓库) ...
分类:
Web程序 时间:
2021-06-21 20:30:16
阅读次数:
0
安装docker的准备工作 参考文档>>>https://yeasy.gitbook.io/docker_practice/ DockerHub官网>>>https://hub.docker.com/ 升级centos的yum源 sudo yum update 设置yum源 官方源>sudo yum ...
分类:
其他好文 时间:
2021-06-21 20:16:40
阅读次数:
0