#1、安装ElasticSearch ###拉取镜像 docker pull docker.elastic.co/elasticsearch/elasticsearch:7.1.1 ###创建资料卷 docker volume create es-data docker volume create ...
分类:
其他好文 时间:
2021-06-28 21:17:34
阅读次数:
0
有人说要先安装Cython,但是我安装了Cython之后还是报这个错误,然后就换了一种安装思路 先去清华源镜像站https://opentuna.cn/pypi/web/simple/pycocotools/下载pycocotools-2.0.2.tar.gz 然后cd到pycocotools-2. ...
Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys ...
分类:
数据库 时间:
2021-06-28 20:57:43
阅读次数:
0
jQuery事件: 1、事件注册 单个事件注册 element.事件(function() {}) 例:$(“div”).click(function(){ 事件处理程序 }) 2、事件处理 事件处理on()绑定事件 on() 方法在匹配元素上绑定一个或多个事件的事件处理函数 element.on( ...
分类:
Web程序 时间:
2021-06-28 20:47:55
阅读次数:
0
经常使用命令行进行一些操作,一些常用的命令一遍遍的敲比较浪费时间,想通过别名的方式简化操作。 1、就是编辑~/.bash_profile,比如添加PS:=两边没有空格: alias st="git status" alias pull='git pull' alias push='git push' ...
分类:
系统相关 时间:
2021-06-28 20:41:29
阅读次数:
0
JDK8下载网址 按默认设置一直点下一步 记录安装路径 本机路径:C:\Program Files\Java 该目录下包含2个路径 后面需要用 C:\Program Files\Java\jdk1.8.0_291 C:\Program Files\Java\jre1.8.0_291 配置环境变量 在 ...
分类:
其他好文 时间:
2021-06-28 20:41:11
阅读次数:
0
公司项目C#操作mysql数据库时出现几个问题的解决方案作下记录 1、The MySQL server is running with the --secure-file-priv option so it cannot execute this statement” 解决方法:修改my.ini 配 ...
分类:
数据库 时间:
2021-06-28 20:37:38
阅读次数:
0
一、FTP简介 文件传输协议(英文:File Transfer Protocol,缩写:FTP)是用于在网络上进行文件传输的一套标准协议。它工作于网络传输协议的应用层,使用客户/服务器模式,主要是用来在服务器与客户端之间进行数据传输。FTP 其实是以 TCP 封包的模式进行服务器与客户端计算机之间的 ...
分类:
系统相关 时间:
2021-06-28 20:36:24
阅读次数:
0
// CommonTest.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <atlbase.h> #incl ...
分类:
编程语言 时间:
2021-06-28 20:36:02
阅读次数:
0
JavaScript库,是一个封装好的集合(方法和函数)。简单说就是一个js文件,里面是堆原生js代码进行了封装。 Jquery是一个JS库,就是为了快速方便操作DOM,里面基本都是函数(方法)。 JQuery优点: 轻量级,核心文件才几十kb 跨浏览器兼容,基本兼容了现在主流的浏览器 链式编程,隐 ...
分类:
Web程序 时间:
2021-06-28 20:29:42
阅读次数:
0