• 最新文章

ElasticSearch 配置文件介绍

##################### Elasticsearch Configuration Example ##################### # This file contains an overview of various configuration settings, # targeted at operations staff. Application develope

Windows下部署 ElasticSearch(集群)

先看单机ElasticSearch部署:Windows下部署 ElasticSearch、Head插件、Kibana(单机) 1、把 ElasticSearch 解压、复制到三个文件夹中 2、修改三个文件夹中 config 下的 elasticsearch.yml     详细配置可参考:elasticsearch.yml 的配置属性官方解释,Elastic

Redis 简介

Redis具备如下特性:     1、基于内存运行,性能高效     2、支持分布式,理论上可以无限扩展     3、key-value 存储系统     4、开源的使用ANSI C语言编写、遵守BSD协议、支持网络、可基于内存亦可持久化的

制作 Visual Studio 2019 离线安装包

下载安装工具:https://visualstudio.microsoft.com/zh-hans/ 可直接下载:vs_enterprise(企业版).exe 版本说明: Enterprise (企业版)-------------vs_enterprise.exe Professional (专业版)----------vs_professional.exe Community (社区版, 免费)

mysql 8.0以上版本用户密码修改

执行以下命令: mysql -uroot -p use mysql;  update user set authentication_string=\'\' where user=\'root\'; //将 authentication_string 置空 alter user \'root\'@\'%\' identified by \'newpassword\'; flush privileges; 注

mysql 8.0以上版本添加用户并授权

执行如下命令: grant all privileges on *.* to \'root\'@\'%\' identified by \'123456\' with grant option 报错: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for