当前位置:首页 > 大杂烩

大杂烩

  • 最新
  • 浏览
  • 评论

elasticsearch基础使用

高老师6年前 (2020-05-24)1516
elasticsearch基础使用
(1).在elasticsearch-head插件手工创建索引,索引名称learn,索引相当于数据库(2).创建类型,并设置类型的mapping,相当于创建表,并设置表结构类型为video相当于表,mapping相当于为表设置结构请求地址:http://localhost:9200/learn/ 请...

docker安装Elasticsearch,docker Elasticsearch

高老师6年前 (2020-05-23)1384
docker安装Elasticsearch,docker Elasticsearch
(1).下载镜像,最好走代理,就算换阿里云镜像还是走官网镜像拉取 docker pull docker.elastic.co/elasticsearch/elasticsearch:6.5.1(2).运行镜像,生成容器id:8360130bde68 docke...

checking build system type... ./config.guess: unable to guess system type

高老师6年前 (2020-05-22)2886
checking build system type... ./config.guess: unable to guess system type
checking build system type... ./config.guess: unable to guess system type,编译时识别不了我的系统类型,我的手机是aarch64,也就是arm处理器,指定系统类型即可./configure --host=arm-lin...

Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment vari

高老师6年前 (2020-05-21)1810
Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment vari
执行安装redis时候报错:pecl install redisCannot find autoconf. Please check your autoconf installation and the$PHP_AUTOCONF environment variable. The...

linux Deploy centos7阿里云镜像地址

高老师6年前 (2020-05-20)2874
linux Deploy centos7阿里云镜像地址
镜像地址:http://mirrors.aliyun.com/centos-altarch/确保/7/os/目录有你的处理器名称,我的处理器是aarch64。建议设置镜像文件最少10G起步。...

自己动手搭建smtp邮箱服务器,内网向外网发送邮件

高老师6年前 (2020-05-10)6684
自己动手搭建smtp邮箱服务器,内网向外网发送邮件
(1).移除sendmail,并安装postfixrpm -e sendmail 或者 yum remove sendmailyum install postfix(2).配置hostname为mail.nidey.co...

ocr文字识别软件,图片文字识别软件,图片文字提取软件

高老师6年前 (2020-05-05)523605
 ocr文字识别软件,图片文字识别软件,图片文字提取软件
最近在写实践考试论文,参考网上的文章很多都是图片,懒得打字,虽然网上有免费的在线转换,但是识别效果不好,部分还有次数限制。推荐pdf猫ocr识别,支持截图识别,支持图片选择识别,软件免费,识别效果不错。地址:https://www.pdftodoc.cn/bd/ocr/index.html...

getchar函数,putchar函数

高老师6年前 (2020-04-19)2147
getchar函数,putchar函数
概念:(1)getchar函数的原型:int getchar(void)    作用:从标准输入 stdin 获取一个字符(一个无符号字符),也就是从命令行终端获取你输入的一个字符,返回的也是一个字符(2)putchar函数的原型:  int putchar(int c...

centos6开机自动挂载,centos7开机自动挂载

高老师6年前 (2020-04-14)5013
centos6开机自动挂载,centos7开机自动挂载
我是在虚拟机中挂载windows的磁盘,我的挂载命令为:mount -t vboxsf wwwroot /mnt/winwwwroot/然后将命令添加到/etc/rc.local文件中,开机就会自动执行挂载命令,centos7还需要给这个/etc/rc.loc...

regasm注册,gacutil 工具

高老师6年前 (2020-03-25)2743
regasm注册,gacutil 工具
(1).regasm.exe文件是什么首先regasm.exe工具是用来注册net平台这种托管语言编写的dll类库的,包括com扩展。为什么不是regsvr32 呢?因为net平台生成的并不是真正的二进制文件,无法使用regsvr32 进行注册。(2).regasm.exe文件在哪里32平台机器 C...